Esempio n. 1
0
 private void Resize(int _width, int _height)
 {
     this.current_client_width  = _width;
     this.current_client_height = _height;
     ScreenSizeManager.GetWindowRect(this.window_handle, out this.window_rect);
     ScreenSizeManager.MoveWindow(this.window_handle, this.window_rect.left, this.window_rect.top, _width + this.frame_width, _height + this.frame_height, 1);
 }
Esempio n. 2
0
        private void Awake()
        {
            this.window_handle = ScreenSizeManager.FindWindow((string)null, Application.get_productName());
            ScreenSizeManager.GetClientRect(this.window_handle, out this.client_rect);
            this.next_client_width  = this.current_client_width = this.client_rect.right - this.client_rect.left;
            this.next_client_height = this.current_client_height = this.client_rect.bottom - this.client_rect.top;
            ScreenSizeManager.GetWindowRect(this.window_handle, out this.window_rect);
            int num1 = this.window_rect.right - this.window_rect.left;
            int num2 = this.window_rect.bottom - this.window_rect.top;

            this.frame_width  = num1 - this.current_client_width;
            this.frame_height = num2 - this.current_client_height;
        }