add runtime button or shape
Posted: Fri Sep 06, 2013 7:24 am
Hi,
I want to add some buttons and/or shapes runtime on a form.
I can creat it, but I don't get it on the form:
I am using the windows button. But I also tried it with the IX button. The button should come on screen1. I am using IX v2.0 SP1 Build 2.0.463.0
I get every time the messages:
I want to add some buttons and/or shapes runtime on a form.
I can creat it, but I don't get it on the form:
Code: Select all
public void Button1_Click(System.Object sender, System.EventArgs e)
{
winButton btn = new winButton();
btn.Height = 40;
btn.Width = 300;
btn.BackColor = Color.Red;
btn.Name = "btn1";
this.Controls.Add(btn);
}
I get every time the messages:
'Neo.ApplicationFramework.Generated.Screen1' does not contain a definiation for 'Controls' and no extension method 'Controls' accepting a first argument of type 'Neo.ApplicationFramework.Generated.Screen1' could be found (are you missing a using directive or an assembly reference?)