这很奇怪。当我在按钮的绘制事件中执行此操作时:
using (LinearGradientBrush brush = new LinearGradientBrush(button1.ClientRectangle,
Color.Orange,
Color.Red,
90F))
{
e.Graphics.FillRectangle(brush, this.ClientRectangle);
}
按钮的文本消失。我怎样才能找回文字?