当前位置: 首页 > 工具软件 > SharpDevelop > 使用案例 >

SharpDevelop 动态添加控件

端木令雪
2023-12-01

Button b = (Button)_host.CreateComponent(typeof(Button),"控件名称");// 创建组件
                // Set the Parent of this Button to the RootComponent (the Form)
                b.Text="Button1";
                b.Parent = (Form)_host.RootComponent;
                UpdateComboBox();

 类似资料: