Winform中实现更改DevExpress的RadioGroup的选项时更改其他控件(TextEdit、ColorPickEdit)的值
2021-02-04 15:14
标签:配置 动态 tostring dev style smo bilibili change 文件中 Winform中实现读取xml配置文件并动态配置ZedGraph的RadioGroup的选项: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/100540708 在上面实现了将RadioGroup的选项根据配置文件动态配置后, 比如这里有三个选项,在更改选项时会对其他的控件的值进行更改。 关注公众号 首先在窗体的加载完成的方法中,实现对其他控件默认属性的赋值。 具体可以参照上面的博客。 然后在窗体设页面找到RadioGroup控件-右击-属性 找到小闪电下的事件列表中的SelectedIndexChanged事件,双击进入其方法的编写中。 注: 其中nodeYList是从配置文件中读取的对象的list,这里在窗体加载完之后将其存放在全局变量中,具体参照上面博客。 Winform中实现更改DevExpress的RadioGroup的选项时更改其他控件(TextEdit、ColorPickEdit)的值 标签:配置 动态 tostring dev style smo bilibili change 文件中 原文地址:https://www.cnblogs.com/badaoliumangqizhi/p/11460442.html场景
效果
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。
大量编程视频教程:https://space.bilibili.com/164396311实现
//将默认选择项的值赋给其他控件
this.textEdit1.Text = selectedRadio.Max.ToString();
this.textEdit2.Text = selectedRadio.Min.ToString();
this.colorPickEdit1.Text = selectedRadio.Color.ToString();
private void radioGroup1_SelectedIndexChanged(object sender, EventArgs e)
{
foreach (YAxisModel y in nodeYList)
{
if (y.No.ToString().Equals(this.radioGroup1.Text.ToString()))
{
this.textEdit1.Text = y.Max.ToString();
this.textEdit2.Text = y.Min.ToString();
this.colorPickEdit1.Text = y.Color.ToString();
break;
}
}
}
文章标题:Winform中实现更改DevExpress的RadioGroup的选项时更改其他控件(TextEdit、ColorPickEdit)的值
文章链接:http://soscw.com/index.php/essay/50944.html