PowerTools PlusPak for Windows Forms 8.0J
GcResizeAttaching イベント
使用例 

GcResize コンポーネントが System.Windows.Forms.Form にアタッチされる直前に発生します。
構文
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、GcResizeAttachingEventArgs 型の引数を受け取りました。次の GcResizeAttachingEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Cancelこの GcResizeAttaching イベントがキャンセルされるかどうかを示す値を取得または設定します。  
FormGcResize コンポーネントがアタッチされる System.Windows.Forms.Form を取得します。  
GcResizeForm にアタッチされる GcResize コンポーネントを取得します。  
解説

このイベントのイベントハンドラで、GcResize コンポーネントの初期設定を変更できます。

現在のアタッチ操作をキャンセルするには、GcResizeAttachingEventArgs.Cancel プロパティを true に設定します。

使用例

次のサンプルコードは、このイベントの使用方法を示します。

このサンプルコードは、GcApplicationResize クラスに示されている詳細なコード例の一部を抜粋したものです。

void _gcApplicationResize_GcResizeAttaching(object sender, GcResizeAttachingEventArgs e)
{
    // May be some forms should not be Resize.
    if (e.Form is NormalForm)
    {
        e.Cancel = true;
    }
}
Private Sub _gcApplicationResize_GcResizeAttaching(sender As Object, e As GcResizeAttachingEventArgs)
    ' May be some forms should not be Resize.
    If TypeOf e.Form Is NormalForm Then
        e.Cancel = True
    End If
End Sub
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

GcApplicationResize クラス
GcApplicationResize メンバ

Send Feedback