با سلام
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace textbox
{
class mytextbox : TextBox
{
public mytextbox()
: base()
{
this.Font = new System.Drawing.Font
("tahoma", 10, System.Drawing.FontStyle.Regular);
}
protected override void OnResize(EventArgs e)
{
MessageBox.Show("Resize");
base.OnResize(e);
}
}
}