次のコードを使用してテキストボックスを作成しましたが、テキストボックスのどのような状況でも、ペイントメソッドは起動されません。 OnPaint()をトリガーするソリューションを提案できますか?あなたのOnPaint
TextBox OnPaintメソッドが呼び出されていませんか?
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
ControlPaint.DrawBorder(e.Graphics, this.Bounds, Color.Red, ButtonBorderStyle.Solid);
}
base.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);
}
}
ヒットしていないことをデバッグしましたか?あなたの 'DrawBorder'呼び出しは' base.OnPaint() '_after_を呼び出しているので、役に立たないかもしれません。だから、 'TextBox'は以前に描いたものを再び描画します。 –