System\Windows\UIElement.cs (6)
1068return new Size(RoundLayoutValue(size.Width, dpiScaleX), RoundLayoutValue(size.Height, dpiScaleY));
1116return new Rect(RoundLayoutValue(rect.X, dpiScaleX),
1117RoundLayoutValue(rect.Y, dpiScaleY),
1118RoundLayoutValue(rect.Width, dpiScaleX),
1119RoundLayoutValue(rect.Height, dpiScaleY)