public FrmNotificationEdit(string _text, string _user_loged, string _notification) { InitializeComponent(); Text = _text; User = _user_loged; Notification = _notification; TxtNotification.Text = Text; TxtNotification.Focus(); }
private void BtnLimpar_Click(object sender, EventArgs e) { TxtNotification.Text = ""; TxtNotification.Focus(); }