5
จะส่งจำนวนเต็มเป็น ConverterParameter ได้อย่างไร
ฉันกำลังพยายามเชื่อมโยงกับคุณสมบัติจำนวนเต็ม: <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; } …