我已经使用以下代码创建了一个文本框,但是在文本框的任何情况下都不会触发paint方法。您能提出触发OnPaint()的解决方案吗?
public class MyTextBox : TextBox
{
protected override void OnPaintBackground(PaintEventArgs pevent)
{
base.OnPaintBackground(pevent);
}
protected override void OnPaint(PaintEventArgs e)
{
ControlPaint.DrawBorder(e.Graphics,this.Bounds, Color.Red,ButtonBorderStyle.Solid);
base.OnPaint(e);
}
protected override void OnTextChanged(EventArgs e)
{
this.Invalidate();
this.Refresh();
base.OnTextChanged(e);
}
}
最佳答案
默认情况下,除非您通过调用来将OnPaint注册为自绘控件,否则默认情况下不会在TextBox上调用OnPaint。
SetStyle(ControlStyles.UserPaint, true);
例如从您的MyTextBox构造函数。
关于c# - 不调用TextBox的OnPaint方法吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37944323/