从多个控件获取值的通用方法
本文关键字:方法 获取 控件 | 更新日期: 2023-09-27 18:37:05
我有一个Form
,其中包含多个不同的控件,例如ComboBox
,TextBox
和CheckBox
。我正在寻找一种通用方法,可以在循环访问这些控件时从这些控件中获取值。
例如,像这样:
foreach(Control control in controls)
{
values.Add(control.Value);
}
是否可以或我需要单独治疗每个control
?
试试这个:
Panel myPanel = this.Panel1;
List<string> values = new List<string>();
foreach (Control control in myPanel.Controls)
{
values.Add(control.Text);
}
但请确保您只获得所需的控件。您可以像检查一样检查类型
if(control is ComboBox)
{
// Do something
}
如果每个控件都是文本框,则文本解决方案是可以的,但是如果你有一些标签,你最终会在值中得到标签的文本,除非你用if填充代码。更好的解决方案是定义一组委托,对于每种控件,这些委托返回被视为值的内容(例如,文本框的文本和复选框的选中),将它们放入字典中,并使用它们获取每个控件的值。代码可能是这样的:
public delegate object GetControlValue(Control aCtrl);
private static Dictionary<Type, GetControlValue> _valDelegates;
public static Dictionary<Type, GetControlValue> ValDelegates
{
get
{
if (_valDelegates == null)
InitializeValDelegates();
return _valDelegates;
}
}
private static void InitializeValDelegates()
{
_valDelegates = new Dictionary<Type, GetControlValue>();
_valDelegates[typeof(TextBox)] = new GetControlValue(delegate(Control aCtrl)
{
return ((TextBox)aCtrl).Text;
});
_valDelegates[typeof(CheckBox)] = new GetControlValue(delegate(Control aCtrl)
{
return ((CheckBox)aCtrl).Checked;
});
// ... other controls
}
public static object GetValue(Control aCtrl)
{
GetControlValue aDel;
if (ValDelegates.TryGetValue(aCtrl.GetType(), out aDel))
return aDel(aCtrl);
else
return null;
}
然后你可以写:
foreach (Control aCtrl in Controls)
{
object aVal = GetValue(aCtrl);
if (aVal != null)
values.Add(aVal);
}