コード例 #1
0
ファイル: CControl.cs プロジェクト: dannisliang/BBMessenger
        public void GetWindowRect(ref CRect rect)
        {
            if (_control == null)
            {
                return;
            }

            rect.SetRect(_control.Left, _control.Top, _control.Right, _control.Bottom);
        }
コード例 #2
0
ファイル: CDialog.cs プロジェクト: dannisliang/BBMessenger
        public void GetClientRect(ref CRect rect)
        {
            Rectangle rectangle = this.ClientRectangle;

            rect.SetRect(rectangle.Left, rectangle.Top, rectangle.Right, rectangle.Bottom);
        }
コード例 #3
0
ファイル: CDialog.cs プロジェクト: dannisliang/BBMessenger
 public void GetWindowRect(ref CRect rect)
 {
     rect.SetRect(this.Left, this.Top, this.Right, this.Bottom);
 }