摘要: 本来我是想从C#中把form对象传递到Lua里面去,然后在Lua中调用form下面的各个组件,比如textbox、button等,从而实现在Lua中控制C#中form界面的布局。但是发现如下问题: 1 //Form1.cs 2 3 class Form1 4 { 5 private System.Windows.Forms.TextBox textBox1; 6 private System.Windows.Forms.Button button1; 7 8 private void button1_Click(object sender, EventArgs e) 9 {... 阅读全文
posted @ 2011-12-09 18:05 ifanxp 阅读(2758) 评论(0) 推荐(0) 编辑