我有一个打开 Form2 的 Form 1。如何使 Form2 中的所有 textBox 只读打开?
表格一:
Form2 f2 = new Form2();
f2.ReadOnly();
f2.ShowDialog();
表格 2:
public void ReadOnyTextBoxes(Control parent)
{
foreach (Control c in parent.Controls)
{
if (c.GetType() == typeof(TextBox))
{
((TextBox)(c)).ReadOnly = true;
}
}
}
public void ReadOnly()
{
ReadOnyTextBoxes(groupBox1);
}