Setting an Image to my Image control
private void SetShipmentStatus(bool status)
{
if (status)
{
txtStatus.Text = "Su envio fue entregado!";
imgStatus.Source = ???
}
}
How can I give my XAML Image control a 开发者_如何学运维source programatically? I have the image in this location as Resource:
精彩评论