本文整理汇总了C#中System.Windows.Forms.Form.SelectNextControl方法的典型用法代码示例。如果您正苦于以下问题:C# Form.SelectNextControl方法的具体用法?C# Form.SelectNextControl怎么用?C# Form.SelectNextControl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.Form
的用法示例。
在下文中一共展示了Form.SelectNextControl方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: goNextControl
public void goNextControl(Form form, object sender, KeyPressEventArgs e)
{
if ((int)e.KeyChar == (int)Keys.Enter)
{
form.SelectNextControl((Control)sender, true, true, true, true);
e.Handled = true;
}
}
示例2: TestPublicMethods
//.........这里部分代码省略.........
Assert.IsTrue (c.IsHandleCreated, "A21");
c.Dispose ();
c = new Form ();
c.Refresh ();
Assert.IsFalse (c.IsHandleCreated, "A22");
c.ResetBackColor ();
Assert.IsFalse (c.IsHandleCreated, "A23");
c.ResetBindings ();
Assert.IsFalse (c.IsHandleCreated, "A24");
c.ResetCursor ();
Assert.IsFalse (c.IsHandleCreated, "A25");
c.ResetFont ();
Assert.IsFalse (c.IsHandleCreated, "A26");
c.ResetForeColor ();
Assert.IsFalse (c.IsHandleCreated, "A27");
c.ResetImeMode ();
Assert.IsFalse (c.IsHandleCreated, "A28");
c.ResetRightToLeft ();
Assert.IsFalse (c.IsHandleCreated, "A29");
c.ResetText ();
Assert.IsFalse (c.IsHandleCreated, "A30");
c.SuspendLayout ();
Assert.IsFalse (c.IsHandleCreated, "A31");
c.ResumeLayout ();
Assert.IsFalse (c.IsHandleCreated, "A32");
c.Scale (new SizeF (1.5f, 1.5f));
Assert.IsFalse (c.IsHandleCreated, "A33");
c.Select ();
Assert.IsTrue (c.IsHandleCreated, "A34");
c.Dispose ();
c = new Form ();
c.SelectNextControl (new Control (), true, true, true, true);
Assert.IsFalse (c.IsHandleCreated, "A35");
c.SetBounds (0, 0, 100, 100);
Assert.IsFalse (c.IsHandleCreated, "A36");
c.Update ();
Assert.IsFalse (c.IsHandleCreated, "A37");
// Form
c.Activate ();
Assert.IsFalse (c.IsHandleCreated, "F1");
c.AddOwnedForm (new Form ());
Assert.IsFalse (c.IsHandleCreated, "F2");
c.Close ();
Assert.IsFalse (c.IsHandleCreated, "F3");
c.Hide ();
Assert.IsFalse (c.IsHandleCreated, "F4");
c.LayoutMdi (MdiLayout.Cascade);
Assert.IsFalse (c.IsHandleCreated, "F5");
#if !MONO
c.PerformAutoScale ();
Assert.IsFalse (c.IsHandleCreated, "F6");
#endif
c.PerformLayout ();
Assert.IsFalse (c.IsHandleCreated, "F7");
c.AddOwnedForm (new Form ());
示例3: ControlSelectNextFlatTest
public void ControlSelectNextFlatTest ()
{
// if (TestHelper.RunningOnUnix) {
// Assert.Ignore ("Relies on form.Show() synchronously generating WM_ACTIVATE");
// }
Form form = new Form ();
form.ShowInTaskbar = false;
form.Controls.AddRange (flat_controls);
form.Show ();
Assert.IsTrue (flat_controls [0].Focused, "sanity-1");
Assert.AreEqual (flat_controls [0], form.ActiveControl, "sanity-2");
form.SelectNextControl (flat_controls [0], true, false, false, false);
Assert.IsFalse (flat_controls [0].Focused, "A1");
Assert.IsTrue (flat_controls [1].Focused, "A2");
Assert.IsFalse (flat_controls [2].Focused, "A3");
Assert.AreEqual (flat_controls [1], form.ActiveControl, "A4");
form.SelectNextControl (flat_controls [1], true, false, false, false);
Assert.IsFalse (flat_controls [0].Focused, "A5");
Assert.IsFalse (flat_controls [1].Focused, "A6");
Assert.IsTrue (flat_controls [2].Focused, "A7");
Assert.AreEqual (flat_controls [2], form.ActiveControl, "A8");
// Can't select anymore because we aren't wrapping
form.SelectNextControl (flat_controls [2], true, false, false, false);
Assert.IsFalse (flat_controls [0].Focused, "A9");
Assert.IsFalse (flat_controls [1].Focused, "A10");
Assert.IsTrue (flat_controls [2].Focused, "A11");
Assert.AreEqual (flat_controls [2], form.ActiveControl, "A12");
form.SelectNextControl (flat_controls [2], true, false, false, true);
Assert.IsTrue (flat_controls [0].Focused, "A13");
Assert.IsFalse (flat_controls [1].Focused, "A14");
Assert.IsFalse (flat_controls [2].Focused, "A15");
Assert.AreEqual (flat_controls [0], form.ActiveControl, "A16");
form.Dispose ();
}
示例4: EnsureDirectedSelectUsed
public void EnsureDirectedSelectUsed ()
{
Form form = new Form ();
form.ShowInTaskbar = false;
form.Show ();
form.Controls.AddRange (flat_controls);
form.SelectNextControl (null, true, false, false, false);
Assert.IsTrue (flat_controls [0].directed_select_called, "A1");
form.Dispose ();
}
示例5: SelectNextControlNullTest
public void SelectNextControlNullTest ()
{
Form form = new Form ();
form.ShowInTaskbar = false;
form.Show ();
form.Controls.AddRange (flat_controls);
form.SelectNextControl (null, true, false, false, false);
Assert.IsTrue (flat_controls [0].Focused, "A1");
Assert.IsFalse (flat_controls [1].Focused, "A2");
Assert.IsFalse (flat_controls [2].Focused, "A3");
Assert.AreEqual (flat_controls [0], form.ActiveControl, "A4");
form.SelectNextControl (null, true, false, false, false);
Assert.IsTrue (flat_controls [0].Focused, "A5");
Assert.IsFalse (flat_controls [1].Focused, "A6");
Assert.IsFalse (flat_controls [2].Focused, "A7");
Assert.AreEqual (flat_controls [0], form.ActiveControl, "A8");
form.Dispose ();
}