Ghost1372

everything can be handy

Image

In HandyControl, corresponding to the native Image control, only a default control style is provided, and no special style is provided. For personalized customization, users need to customize it themselves

Example:

1
2
3
4
<StackPanel Background="LightGray">
<Image Source="Resources/Images/Image_basestyle.png" Margin="0,10"/>
<Image Source="Resources/Images/Image_basestyle.png" RenderOptions.BitmapScalingMode="HighQuality" Stretch="Uniform"/>
</StackPanel>

image.baseStyle

0%