Control.UpdateStyles メソッド

割り当て済みのスタイルを強制的にコントロールに再適用します。

Protected Sub UpdateStyles()
[C#]
protected void UpdateStyles();
[C++]
protected: void UpdateStyles();
[JScript]
protected function UpdateStyles();

解説

このメソッドは、 CreateParams メソッドを呼び出して、適用するスタイルを取得します。コントロールの CreateParams プロパティに割り当てられた CreateParams オブジェクトの Style プロパティおよび ExStyle プロパティに割り当てられたスタイルが、再適用されます。必要に応じて、スタイルの変更を反映するようにコントロールが再描画されます。

IsHandleCreated プロパティ値が false の場合、 UpdateStyles メソッドは無効です。

使用例

[Visual Basic, C#, C++] 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

[C#] 
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();
}

[C++] 
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();
   }

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

Control クラス | Control メンバ | System.Windows.Forms 名前空間 | CreateParams