Control.UpdateStyles 方法

强制将分配的样式重新应用到控件。

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

语法

声明
Protected Sub UpdateStyles
用法

Me.UpdateStyles
protected void UpdateStyles ()
protected:
void UpdateStyles ()
protected void UpdateStyles ()
protected function UpdateStyles ()

备注

此方法调用 CreateParams 方法获取要应用的样式。重新应用分配给 CreateParams(它被分配给控件的 CreateParams 属性)的 StyleExStyle 属性的样式。如有必要重新绘制控件以反映样式更改。

如果 IsHandleCreated 属性值为 false,则 UpdateStyles 方法无效。

示例

下面的代码示例启用 Form 上的双缓冲,并更新样式以反映所做的更改。

Public Sub EnableDoubleBuffering()
   ' Set the value of the double-buffering style bits to true.
   Me.SetStyle(ControlStyles.DoubleBuffer _
     Or ControlStyles.UserPaint _
     Or ControlStyles.AllPaintingInWmPaint, _
     True)
   Me.UpdateStyles()
End Sub
public void EnableDoubleBuffering()
{
   // Set the value of the double-buffering style bits to true.
   this.SetStyle(ControlStyles.DoubleBuffer | 
      ControlStyles.UserPaint | 
      ControlStyles.AllPaintingInWmPaint,
      true);
   this.UpdateStyles();
}
public:
   void EnableDoubleBuffering()
   {
      // Set the value of the double-buffering style bits to true.
      this->SetStyle( static_cast<ControlStyles>(ControlStyles::DoubleBuffer | ControlStyles::UserPaint | ControlStyles::AllPaintingInWmPaint), true );
      this->UpdateStyles();
   }
public void EnableDoubleBuffering()
{
    // Set the value of the double-buffering style bits to true.
    this.SetStyle(ControlStyles.DoubleBuffer | ControlStyles.UserPaint | 
        ControlStyles.AllPaintingInWmPaint, true);
    this.UpdateStyles();
} //EnableDoubleBuffering

平台

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

请参见

参考

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