欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Winform中使用DevExpress时给控件添加子控件的方法

程序员文章站 2022-03-21 18:33:03
场景 在WInform中使用DevExpress时经常使用PanelControl控件用来进行布局设计,因此需要在代码中生成控件并添加子控件。 实现 一种是设置要添加的自控件的Parent属性为容器控件。 最常用的还是通过控件的Controls属性的Add方法将子控件添加进来。 注: 博客首页: h ......

场景

在winform中使用devexpress时经常使用panelcontrol控件用来进行布局设计,因此需要在代码中生成控件并添加子控件。

实现

一种是设置要添加的自控件的parent属性为容器控件。

panelcontrol panelcontrolx = new panelcontrol();
 textedit mintexteditx = new textedit();
            mintexteditx.text = xattribute.min.tostring();
            mintexteditx.properties.mask.masktype = devexpress.xtraeditors.mask.masktype.numeric;
            mintexteditx.width = global.chart_option_width;
            mintexteditx.location = new point(global.nogroup_horizontal_distance , global.group_vertical_distance * 2 + radiogroupx.height);
            mintexteditx.parent = panelcontrolx;

 

最常用的还是通过控件的controls属性的add方法将子控件添加进来。

panelcontrol panelcontroly = new panelcontrol();
labelcontrol labely = new labelcontrol();
labely.text = "y" + ylist[i].no;
labely.location = new point(20, global.group_vertical_distance - labely.height);
panelcontroly.controls.add(labely);

 

注:

博客首页:

关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。