0
<Slider Maximum="{Binding ElementName=flowControl, Path=Items.Count}" />
我需要返回Items.Count - 1滑塊的最大值。我如何在xaml中定義這個?如何在xaml中執行Items.Count -1?
非常感謝,
<Slider Maximum="{Binding ElementName=flowControl, Path=Items.Count}" />
我需要返回Items.Count - 1滑塊的最大值。我如何在xaml中定義這個?如何在xaml中執行Items.Count -1?
非常感謝,
我認爲在這種情況下,你必須使用一個Value Converter
。
例如
public class MaxCountConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
return (int)value - 1;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}
你可能會需要做的錯誤處理和東西,這只是給你一個起點。
使用substracts的1
轉換器