我基于 WPF+MVVM 开发 Prism+MEF 应用程序,其中有许多 DataGrid,因此我构建了 DataGridStyle 以应用于所有模块中的所有 DataGrid。样式在列标题中添加过滤文本框,当文本框文本更改如下时,我使用 MVVM Light EventToCommand 触发 TextChanged 事件:(此代码存在于 DataGridStyle 资源字典中)
<TextBox x:Name="filterTextBox"
HorizontalAlignment="Right" MinWidth="25" Height="Auto"
OpacityMask="Black" Visibility="Collapsed"
Text=""
TextWrapping="Wrap" Grid.Column="0" Grid.ColumnSpan="1">
<i:Interaction.Triggers>
<i:EventTrigger EventName="TextChanged">
<cmd:EventToCommand Command="{Binding DataContext.TextChangedCommand}"
PassEventArgsToCommand="True"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</TextBox>
然后我使用附加属性处理了 ViewModel 中的 TextChangedCommand(与包含数据网格的视图有关):
#region TextChangedCommand----------------------------------------------------------------------------------------------
static ICommand command; //1
public static ICommand GetTextChangedCommand(DependencyObject obj)
{
return (ICommand)obj.GetValue(TextChangedCommandProperty);
}
public static void SetTextChangedCommand(DependencyObject obj, ICommand value)
{
obj.SetValue(TextChangedCommandProperty, value);
}
// Using a DependencyProperty as the backing store for TextChangedCommand. This enables animation, styling, binding, etc...
public static readonly DependencyProperty TextChangedCommandProperty =
DependencyProperty.RegisterAttached("TextChangedCommand",
typeof(ICommand),
typeof(SubsystemAllViewModel),
new UIPropertyMetadata(null, CommandChanged));
static void CommandChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
var fe = obj as FrameworkElement;
command = e.NewValue as ICommand;
fe.AddHandler(TextBox.TextChangedEvent, new TextChangedEventHandler(ExecuteCommand));
}
static void ExecuteCommand(object sender, TextChangedEventArgs e)
{
//Some Code
}
#endregion
以及包含网格的视图:
<DataGrid ItemsSource="{Binding Subsystems,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
SelectedItem="{Binding Path=SelectedSubsystem, Mode=TwoWay}"
Name="SubsystemAllDataGrid"
Style="{StaticResource DataGridStyle}"
Grid.Row="2">
<DataGrid.Columns>
<DataGridTextColumn Header="Serial" Binding="{Binding Path=Serial, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="Type" Binding="{Binding Path=Type, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="System" Binding="{Binding Path=System, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="SubsystemNo" Binding="{Binding Path=SubsystemNo, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="Description" Binding="{Binding Path=Description, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="Scope" Binding="{Binding Path=Scope, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="Area" Binding="{Binding Path=Area, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="Priority" Binding="{Binding Path=Priority, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="DossierLocation" Binding="{Binding Path=DossierLocation, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="Parts" Binding="{Binding Path=Parts, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="Status" Binding="{Binding Path=Status, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="StatusDate" Binding="{Binding Path=StatusDate, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="MCDate" Binding="{Binding Path=MCDate, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="PlnMCDate" Binding="{Binding Path=PlnMCDate, Mode=TwoWay}"></DataGridTextColumn>
<DataGridTextColumn Header="Remark" Binding="{Binding Path=Remark, Mode=TwoWay}"></DataGridTextColumn>
</DataGrid.Columns>
</DataGrid>
问题是:当我在数据网格的列标题之一的文本框中输入过滤器文本时,没有任何反应,并且以下点的断点未命中:
1-GetTextChangedCommand 和 SetTextChangedCommand
2-CommandChanged() 方法。
我是 wpf 的新手,所以我确定 WPF 或 C# 代码中存在错误......所以请帮我修复这些错误。
注意:我不使用后面的代码。
提前致谢