Advertisement
celinedrules

WinUI3 ImageEx Usage

Jan 5th, 2025
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.51 KB | Source Code | 0 0
  1. <Style TargetType="local:ImageEx">
  2.     <Setter Property="Template">
  3.         <Setter.Value>
  4.             <ControlTemplate TargetType="local:ImageEx">
  5.                 <Grid>
  6.                     <Image x:Name="PlaceholderImage" Visibility="Collapsed" Stretch="Uniform" />
  7.                     <Image x:Name="MainImage" Visibility="Collapsed" Stretch="Uniform" />
  8.                 </Grid>
  9.             </ControlTemplate>
  10.         </Setter.Value>
  11.     </Setter>
  12. </Style>
  13.  
  14. <local:ImageEx
  15.     Grid.Column="0"
  16.     PlaceholderSource="Assets/windows-icon.png"
  17.     Source="{x:Bind Thumbnail, Mode=OneWay}"
  18.     Width="200" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement