Is there a way to add an icon to a Dialogbox.
This is where i create the settings for the Dialogbox:
dynamic settings = new ExpandoObject();
settings.WindowStartupLocation =
WindowStartupLocation.CenterOwner;
settings.WindowStyle = WindowStyle.SingleBorderWindow;
settings.ResizeMode = ResizeMode.NoResize;
settings.Title = "System Error";
//settings.(set my icon here);
status.UpdateMessage(ex.Message, $"{ex.Message} To the products list");
_window.ShowDialog(_status, null, settings);