Control.UpdateStyles メソッド

定義

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

protected:
 void UpdateStyles();
protected void UpdateStyles ();
member this.UpdateStyles : unit -> unit
Protected Sub UpdateStyles ()

次のコード例では、a のダブル バッファリングを有効に Form し、変更を反映するようにスタイルを更新します。

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();
}
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

注釈

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

UpdateStylesプロパティ値falseIsHandleCreated .

適用対象

こちらもご覧ください