4
|
Benjamin Autin Andrés Bonilla · 技术社区 · 16 年前 |
![]() |
1
9
处理
顺便说一句,我用的是VS2008。 类似这样的方法奏效了:
|
![]() |
2
1
尝试TabPage。输入如下内容 private void tabPage1_Enter(object sender, EventArgs e) { TabPage page = (TabPage)sender; switch (page.TabIndex) { case 0: textBox1.Text = "Page 1"; if (!textBox1.Focus()) textBox1.Focus(); break; case 1: textBox2.Text = "Page 2"; if (!textBox2.Focus()) textBox2.Focus(); break; default: throw new InvalidOperationException(); } } |
|
Robert King · Unity C#语法问题-转换位置 1 年前 |
![]() |
JBryanB · 如何从基本抽象类访问类属性 1 年前 |
|
law · 检查答案按钮的输入字符串格式不正确 2 年前 |
![]() |
i_sniff_ket · 在unity之外使用unity类 2 年前 |