在我的WPF
应用程序中,我有一个页面,其中可以出现数百个文本框,并且我已将其MultiValueConverter
应用于所有文本框。加载此页面时,每个TextBox
. 我应该怎么做才能优化它?我想在获得焦点TextBox
时调用转换器。TextBox
谢谢你。
这是代码Converter
:
public class TupleParametersConverter : IMultiValueConverter
{
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
if (values.Length != 2) return null;
var controlName = values[0];
var measurement = values[1] as Measurement;
return new Tuple<string, Measurement>(controlName.ToString(), measurement);
}
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
这是我的使用方式Converter
:
<i:EventTrigger EventName="GotFocus">
<i:InvokeCommandAction Command="{Binding DataContext.ConnectToDeviceCommand, ElementName=MainItemControl}">
<i:InvokeCommandAction.CommandParameter>
<MultiBinding Converter="{StaticResource TupleParametersConverter}">
<Binding RelativeSource="{RelativeSource AncestorType={x:Type TextBox}}" Path="Name"/>
<Binding />
</MultiBinding>
</i:InvokeCommandAction.CommandParameter>
</i:InvokeCommandAction>
</i:EventTrigger>