PowerTools PlusPak for Windows Forms 8.0J
GcResizeAttachingEventArgs クラス
メンバ  使用例 

GcApplicationResize クラスの GcResizeAttaching イベントのデータを提供します。
構文
Public Class GcResizeAttachingEventArgs 
   Inherits System.EventArgs
public class GcResizeAttachingEventArgs : System.EventArgs 
使用例

次のサンプルコードは、GcResizeAttachingEventArgs クラスの使用方法を示します。

このサンプルコードは、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
継承階層

System.Object
   System.EventArgs
      GrapeCity.Win.Components.GcResizeAttachingEventArgs

プラットフォーム

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

参照

GcResizeAttachingEventArgs メンバ
GrapeCity.Win.Components 名前空間

Send Feedback