5 references to Height
PresentationFramework (5)
System\Windows\Shell\WindowChromeWorker.cs (4)
370Rect rcLogicalWindow = DpiHelper.DeviceRectToLogical(new Rect(rcWindow.Left, rcWindow.Top, rcWindow.Width, rcWindow.Height), dpi.DpiScaleX, dpi.DpiScaleY); 371Rect rcLogicalClient = DpiHelper.DeviceRectToLogical(new Rect(rcAdjustedClient.Left, rcAdjustedClient.Top, rcAdjustedClient.Width, rcAdjustedClient.Height), dpi.DpiScaleX, dpi.DpiScaleY); 896return new Rect(windowPosition.Left, windowPosition.Top, windowPosition.Width, windowPosition.Height); 1331Size logicalSize = DpiHelper.DeviceSizeToLogical(new Size(rcWindow.Width, rcWindow.Height), dpi.DpiScaleX, dpi.DpiScaleY);
System\Windows\Standard\NativeMethods.cs (1)
2042get { return new SIZE { cx = Width, cy = Height }; }