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