/// <summary>
 /// Make a selection at the start of the box. Subclasses override.
 /// </summary>
 public override InsertionPoint SelectAtStart()
 {
     if (FirstBox == null)
     {
         return(null);
     }
     return(FirstBox.SelectAtStart());
 }
Exemple #2
0
 private void KeyBinding_Changed(object sender, System.EventArgs e)
 {
     FirstBox.Focus();
 }