示例#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
 public UserControlEx()
 {
     _fixer = new FormHelper(this)
     {
         EnableBoundsTracking = false
     };
 }