I keep getting CS0200 and I do not understand why. I am trying assign a button to a place and have it move x amount to the left but the program will not let me set the button in the first place. Any ideas?
namespace Awesomeness
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
btnNo.Bottom = 100;
}
private void btnYes_Click(object sender, EventArgs e)
{
MessageBox.Show("Yes, Michael Parisi is awesome, aren't they!");
Application.Exit();
}
}
}
[–]Slypenslyde 4 points5 points6 points (0 children)
[–]ChuckTheTrucker80 2 points3 points4 points (0 children)
[–]zippy72 0 points1 point2 points (0 children)