Files
Ursa.Avalonia/demo/Ursa.Demo/Pages/ImageViewerDemo.axaml
2023-07-31 02:02:14 +08:00

30 lines
1009 B
XML

<UserControl
x:Class="Ursa.Demo.Pages.ImageViewerDemo"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:u="https://irihi.tech/ursa"
d:DesignHeight="450"
d:DesignWidth="800"
mc:Ignorable="d">
<StackPanel>
<u:ImageViewer
Name="imageViewer"
Width="600"
Height="300"
Source="../Assets/WORLD.png">
<u:ImageViewer.Overlayer>
<Rectangle
Width="100"
Height="100"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Fill="Red"
IsHitTestVisible="False"
Opacity="0.2" />
</u:ImageViewer.Overlayer>
</u:ImageViewer>
</StackPanel>
</UserControl>