コード例 #1
0
ファイル: MainPage.cs プロジェクト: HerrAugust/PlannerPath
        //Button to open CreateTreeForm
        private void button1_Click(object sender, EventArgs e)
        {
            CreateTreeForm f = new CreateTreeForm();

            f.Visible = true;
            f.Activate();
        }
コード例 #2
0
ファイル: InputForm.cs プロジェクト: giuliolastra/PlannerPath
 public InputForm(String t, CreateTreeForm f1ref)
 {
     InitializeComponent();
     cmb_tipo_attributo.Items.Add("Integer");
     cmb_tipo_attributo.Items.Add("String");
     cmb_tipo_attributo.SelectedIndex = 0;
     type = t;
     this.CreateTreeForm = f1ref;
 }
コード例 #3
0
ファイル: InputForm.cs プロジェクト: HerrAugust/PlannerPath
 public InputForm(String t, CreateTreeForm f1ref)
 {
     InitializeComponent();
     cmb_tipo_attributo.Items.Add("Integer");
     cmb_tipo_attributo.Items.Add("String");
     cmb_tipo_attributo.SelectedIndex = 0;
     type = t;
     this.CreateTreeForm = f1ref;
 }
コード例 #4
0
ファイル: MainPage.cs プロジェクト: giuliolastra/PlannerPath
 //Button to open CreateTreeForm
 private void button1_Click(object sender, EventArgs e)
 {
     CreateTreeForm f = new CreateTreeForm();
     f.Visible = true;
     f.Activate();
 }