1

我很享受使用 G1ANT 在我的脚本中嵌入 C# 代码的能力。但是,我无法成功编写有效的事件处理程序。下面是带有按钮和编辑框的基本表单的 G1ANT 代码 - 但没有事件处理程序。(注意我不支持使用 G1ANT 来创建表单,但按钮是引发事件的一个很好的例子。)任何人都可以提供 G1ANT 代码来处理这些按钮事件(任何东西,只要一个 MsgBox 就足够了)?顺便说一句,我尝试过修改在CS-Script中成功运行的脚本,以及在 VS 2019 中编译并毫无怨言地执行但没有运气的程序。

addon core version 4.100.19170.929
addon language version 4.100.19170.929
♥macronamespaces = System, System.IO, System.Windows.Forms,System.Drawing,System.ComponentModel
♥concatenated = ‴Donald Trump‴

⊂
   Form myForm = new Form();

   Button button1;
   Button button2;
   TextBox tb1;

   myForm.Height = 250;
   myForm.Width = 400;
   myForm.Text = "G1ANT FORM";

   button1 = new Button();
   button1.Size = new Size(80, 40);
   button1.Location = new Point(30, 30);
   button1.Text = "Click Me";

   button2 = new Button();
   button2.Size = new Size(80, 40);
   button2.Location = new Point(120, 30);
   button2.Text = "Font";

   tb1 = new TextBox();
   tb1.Size = new Size(920, 450);
   tb1.Top = button1.Bottom + 5;
   tb1.Left = 30;
   tb1.Multiline = true;
   tb1.Text = "Hello, Mr " + ♥concatenated + "!" + @"
   Didn't I just see you at the White House yesterday?
   ";

   myForm.Controls.Add(button1); 
   myForm.Controls.Add(button2);
   myForm.Controls.Add(tb1);

   myForm.Show()

表格看起来像这样。

提前感谢所有帮助,burque505

G1ANT形式

4

1 回答 1

2

是的,可以在 G1ANT 中添加事件处理程序。这是一个适合您的示例:

   button1.Text = "Click Me";
   button1.Click += new EventHandler(delegate (Object o, EventArgs a) 
   {
      MessageBox.Show("test");  
   });
于 2019-07-08T14:31:21.890 回答