Control.OnPaintBackground 方法

绘制控件的背景。

**命名空间:**System.Windows.Forms
**程序集:**System.Windows.Forms(在 system.windows.forms.dll 中)

语法

声明
Protected Overridable Sub OnPaintBackground ( _
    pevent As PaintEventArgs _
)
用法
Dim pevent As PaintEventArgs

Me.OnPaintBackground(pevent)
protected virtual void OnPaintBackground (
    PaintEventArgs pevent
)
protected:
virtual void OnPaintBackground (
    PaintEventArgs^ pevent
)
protected void OnPaintBackground (
    PaintEventArgs pevent
)
protected function OnPaintBackground (
    pevent : PaintEventArgs
)

参数

备注

OnPaintBackground 方法使派生类能够处理 Windows 背景清除请求。

给继承者的说明 继承类应重写此方法,以处理来自窗口的清除背景的请求。在派生类中重写 OnPaintBackground 时,没有必要调用基类的 OnPaintBackground。但是,如果您不需要默认的 Windows 行为,则必须将事件的 Handled 属性设置为 true

平台

Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

.NET Compact Framework

受以下版本支持:2.0、1.0

请参见

参考

Control 类
Control 成员
System.Windows.Forms 命名空间
InvokePaintBackground