GrapeCity.Win.Components 名前空間 > GcApplicationResize クラス : GcResizeAttaching イベント |
Public Event GcResizeAttaching As EventHandler(Of GcResizeAttachingEventArgs)
public event EventHandler<GcResizeAttachingEventArgs> GcResizeAttaching
イベント ハンドラが、このイベントに関連するデータを含む、GcResizeAttachingEventArgs 型の引数を受け取りました。次の GcResizeAttachingEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
Cancel | この GcResizeAttaching イベントがキャンセルされるかどうかを示す値を取得または設定します。 |
Form | GcResize コンポーネントがアタッチされる System.Windows.Forms.Form を取得します。 |
GcResize | Form にアタッチされる 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