public void PluginRun()
{
this.accept.Click += delegate(object sender, EventArgs e)
{
this.run();
};
this.accept.Click += delegate(object sender, EventArgs e)
{
this.visitPoints();
};
this.ShowOptions();
}
form.Controls.Add(this.accept);
form.Controls.Add(label);
form.Controls.Add(ComboRoute);
Form form = new Form
{
Width = 400,
Height = 350,
Text = "XXX"
};
Label label = new Label
{
Left = 10,
Top = 5,
Width = 300
};
How do i place multiple form that will lead to multiple actions. Currently when i do above, i click the start button, it works but the form will be not responding. How do i stop and run other "buttons" as it's directed as another function.
Thanks in advance! I'm trying to give back to the community :P
{
this.accept.Click += delegate(object sender, EventArgs e)
{
this.run();
};
this.accept.Click += delegate(object sender, EventArgs e)
{
this.visitPoints();
};
this.ShowOptions();
}
form.Controls.Add(this.accept);
form.Controls.Add(label);
form.Controls.Add(ComboRoute);
Form form = new Form
{
Width = 400,
Height = 350,
Text = "XXX"
};
Label label = new Label
{
Left = 10,
Top = 5,
Width = 300
};
How do i place multiple form that will lead to multiple actions. Currently when i do above, i click the start button, it works but the form will be not responding. How do i stop and run other "buttons" as it's directed as another function.
Thanks in advance! I'm trying to give back to the community :P
Plugin Development
Aucun commentaire:
Enregistrer un commentaire