我有一个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 填充代码。更好的解决方案可能是定义一组委托,为每种控件返回被认为是值的内容(例如 TextBox 的 Text 和 CheckBox 的 Checked ),将它们放入字典中,并使用它们来获取值每个控件。代码可能是这样的:
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);
}