コード例 #1
0
ファイル: Form.cs プロジェクト: yzwbrian/SystemEx
        public Form()
        {
            _fixer = new Internal.FormHelper(this);
            _fixer.EnableBoundsTracking = true;

            _lastSizeGripStyle = SizeGripStyle;
        }
コード例 #2
0
ファイル: Form.cs プロジェクト: pvginkel/SystemEx
        public Form()
        {
            _fixer = new Internal.FormHelper(this);
            _fixer.EnableBoundsTracking = true;

            _lastSizeGripStyle = SizeGripStyle;
        }
コード例 #3
0
ファイル: UserControlEx.cs プロジェクト: pvginkel/SystemEx
 public UserControlEx()
 {
     _fixer = new FormHelper(this)
     {
         EnableBoundsTracking = false
     };
 }