我正在使用WinForms。在我的表單中,我有一個按鈕和一個面板。當我點擊該按鈕時,我想將面板向右滑動。我遇到了代碼問題。目前,我得到紅色的錯誤線下 = panel2.Location.X + 1;
滑動面板
Error Message: Cannot implicitly convert type int to System.Drawing.Point
我試圖用類似的方法,我沒有通過種植面板移動的面板。我在我的代碼中提供了這個。我如何移動面板?
private void btn_Right_Click(object sender, EventArgs e)
{
// Make Panel Grow
//while (panel1.Width < 690)
//{
// panel1.Width = panel1.Width + 1;
//}
while (panel2.Location.X < 690)
{
panel2.Location = panel2.Location.X + 1;
}
}
那麼紅色的錯誤說什麼..?我們在這裏不介意讀者.. – MethodMan
您要分配的int一個點 – enkryptor
對不起,錯誤:無法int類型隱式轉換爲System.Drawing.Point @MethodMan –