我尝试用 AvaloniaUi 定义一个 ImageSource。在 WPF 中,我是这样的:
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ImageSource x:Key="Icon">path/to/image/image.png</ImageSource>
</ResourceDictionary>
然后像这样引用它:
<Image Source="{StaticResource Icon}"/>
我如何在 Avalonia 中存档相同的内容?