我需要设置表单上每个文本框的高度,其中一些文本框嵌套在其他控件中。我以为我可以这样做:
private static IEnumerator<TextBox> FindTextBoxes(Control rootControl)
{
foreach (Control control in rootControl.Controls)
{
if (control.Controls.Count > 0)
{
// Recursively search for any TextBoxes within each child control
foreach (TextBox textBox in FindTextBoxes(control))
{
yield return textBox;
}
}
TextBox textBox2 = control as TextBox;
if (textBox2 != null)
{
yield return textBox2;
}
}
}
像这样使用它:
foreach(TextBox textBox in FindTextBoxes(this))
{
textBox.Height = height;
}
但是编译器当然会吐出它的假,因为 foreach 需要 IEnumerable 而不是 IEnumerator 。
有没有办法在不必使用 GetEnumerator()方法创建单独的类的情况下执行此操作?
答案 0 :(得分:13)
正如编译器告诉你的那样,你需要将返回类型更改为IEnumerable。这就是yield return语法的工作原理。
答案 1 :(得分:10)
只是为了澄清
private static IEnumerator<TextBox> FindTextBoxes(Control rootControl)
对
的更改private static IEnumerable<TextBox> FindTextBoxes(Control rootControl)
应该是全部: - )
答案 2 :(得分:3)
如果返回IEnumerator,则每次调用该方法时它将是一个不同的枚举器对象(就像在每次迭代时重置枚举器一样)。如果你返回IEnumerable,那么foreach可以根据带有yield语句的方法进行枚举。
答案 3 :(得分:1)
// Generic function that gets all child controls of a certain type,
// returned in a List collection
private static List<T> GetChildTextBoxes<T>(Control ctrl) where T : Control{
List<T> tbs = new List<T>();
foreach (Control c in ctrl.Controls) {
// If c is of type T, add it to the collection
if (c is T) {
tbs.Add((T)c);
}
}
return tbs;
}
private static void SetChildTextBoxesHeight(Control ctrl, int height) {
foreach (TextBox t in GetChildTextBoxes<TextBox>(ctrl)) {
t.Height = height;
}
}
答案 4 :(得分:0)
如果给你一个枚举器,并且需要在for-each循环中使用它,你可以使用以下命令来包装它:
static public class enumerationHelper { public class enumeratorHolder<T> { private T theEnumerator; public T GetEnumerator() { return theEnumerator; } public enumeratorHolder(T newEnumerator) { theEnumerator = newEnumerator;} } static enumeratorHolder<T> toEnumerable<T>(T theEnumerator) { return new enumeratorHolder<T>(theEnumerator); } private class IEnumeratorHolder<T>:IEnumerable<T> { private IEnumerator<T> theEnumerator; public IEnumerator<T> GetEnumerator() { return theEnumerator; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return theEnumerator; } public IEnumeratorHolder(IEnumerator<T> newEnumerator) { theEnumerator = newEnumerator; } } static IEnumerable<T> toEnumerable<T>(IEnumerator<T> theEnumerator) { return new IEnumeratorHolder<T>(theEnumerator); } }
toEnumerable
方法将接受来自GetEnumerator
的{{3}}或c#认为可接受的返回类型的任何内容,并返回可在foreach
中使用的内容}。如果参数为IEnumerator<>
,则响应将为IEnumerable<T>
,但在其上调用GetEnumerator
一次可能会产生错误结果。