public void Setup(string title, string text) { Title = title; TB.Text = text; TB.Focus(); TB.SelectAll(); }
protected override void OnGotFocus(EventArgs e) { base.OnGotFocus(e); TB.Focus(); }
public override void Focus() { TB.Focus(); }