ฉันกำลังพยายามเชื่อมโยงกับคุณสมบัติจำนวนเต็ม:
<RadioButton Content="None"
IsChecked="{Binding MyProperty,
Converter={StaticResource IntToBoolConverter},
ConverterParameter=0}" />
และตัวแปลงของฉันคือ:
[ValueConversion(typeof(int), typeof(bool))]
public class IntToBoolConverter : IValueConverter
{
public object Convert(object value, Type t, object parameter, CultureInfo culture)
{
return value.Equals(parameter);
}
public object ConvertBack(object value, Type t, object parameter, CultureInfo culture)
{
return value.Equals(false) ? DependencyProperty.UnsetValue : parameter;
}
}
ปัญหาคือเมื่อตัวแปลงของฉันเรียกว่าพารามิเตอร์เป็นสตริง ฉันต้องการให้เป็นจำนวนเต็ม แน่นอนฉันสามารถแยกวิเคราะห์สตริงได้ แต่ฉันต้องทำอย่างไร
ขอบคุณสำหรับความช่วยเหลือของคอนสแตนติน