There was an error while loading. Please reload this page.
Useful hints when using Eto's Xaml (.xeto) for defining your UI
When you want to use images in your xaml (.xeto) or other embedded resources, you can use the ResourceExtension markup extension.
{Resource ...}
<ImageView Image="{Resource MyAssembly.Path.To.Image.png, MyAssembly}" />
The resource file path should be provided in the same format returned by Assembly.GetManifestResourceNames().
Assembly.GetManifestResourceNames()
Note: You can omit the assembly at the end if your code behind class is in the same assembly.