Jeśli ktoś szuka Konwertera wartości do wiązania. Oto co kiedyś
<Image Source="{Binding Converter={StaticResource ImageConverter},ConverterParameter=\{Status\}}" />
public class StatusToImageConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
string statusValue = parameter.ToString().ToUpper();
if (!string.IsNullOrEmpty(statusValue))
{
string result = string.Empty;
switch (statusValue)
{
case "IDLE":
result = "idle.png";
break;
case "OFFLINE":
result = "offline.png";
break;
default:
result = "online.png";
break;
}
var uri = new Uri("pack://application:,,,/PIE;component/Images/" + result);
return uri;
}
return string.Empty;
}
// No need to implement converting back on a one-way binding
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return DependencyProperty.UnsetValue;
}
}
Bounded Enum
public enum DevStatus
{
Idle = 1,
Offline = 2,
Active = 3,
}
zestaw Enum z ViewModel i konwerter zwiąże odpowiedni obraz.
<Image Source="{Binding DevStatus, Converter={StaticResource ImageConverter}}" />
Czy to działa dla właściwości różnych elementów? Na przykład, co jeśli chcę powiązać obraz w oparciu o wartość etykiety, czy to działa w ten sam sposób? Czy mógłbyś rozwinąć? – user3841581