© 2026 Hedgehog Software, LLC
<Image Source="{Binding ImagePath}" />
public static string? _imagePath; public ViewModel() { ImagePath = "/Assets/logo.ico"; } public string? ImagePath { get => _imagePath; set => this.RaiseAndSetIfChanged(ref _imagePath, value); }