We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07c7c39 commit b2016d6Copy full SHA for b2016d6
docs/extensibility/addressing-dpi-issues2.md
@@ -212,9 +212,9 @@ Because WPF will scale the UI for the current DPI using the BitmapScalingMode pr
212
```xaml
213
<Image Source="{Binding Path=SelectedImage, Converter={StaticResource DpiPrescaleImageSourceConverter}}" >
214
<Image.LayoutTransform>
215
- <ScaleTransform
216
- ScaleX="{x:Static vsui:DpiHelper.PreScaledImageLayoutTransformScale}"
217
- ScaleY="{x:Static vsui:DpiHelper.PreScaledImageLayoutTransformScale}" />
+ <ScaleTransform
+ ScaleX="{x:Static vsui:DpiHelper.PreScaledImageLayoutTransformScale}"
+ ScaleY="{x:Static vsui:DpiHelper.PreScaledImageLayoutTransformScale}" />
218
</Image.LayoutTransform>
219
</Image>
220
```
0 commit comments