MVVM WPF列表框鼠标左键单击事件触发

时间:2014-05-28 13:49:23

标签: c# wpf mvvm listbox

我正在使用MVVM架构构建WPF应用程序。在一种形式我有2个列表框,我想执行基于过滤器的搜索。我正在使用常见的搜索文本框,因此我必须根据选择的列表框来区分搜索。请在下面找到我的示例列表框:

<HeaderedContentControl Header="Visible Objects:" Height="120" Width="250" Margin="20,20,20,0">
    <ListBox Name="lstObjects" Height="100" Margin="5" ItemsSource="{Binding ProfileObjTypeToBind, Mode=OneWay}">
        <ListBox.ItemTemplate>
            <DataTemplate>
                <CheckBox Name="chkbxVisibleObjects" Grid.Column="1"
                          Content="{Binding Path=Value}" IsChecked="{Binding Path=flag,Mode=TwoWay}">
                </CheckBox>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>
</HeaderedContentControl>
<HeaderedContentControl Header="User Groups to View:" Height="120" Width="250" Margin="20,10,20,10">
    <ListBox Name="lstGroups" Height="100" Margin="5" ItemsSource="{Binding ProfileUserGrpToBind, Mode=OneWay}">
        <ListBox.ItemTemplate>
            <DataTemplate>
                <CheckBox Name="chkAllowedGroups" Content="{Binding Path=GroupName}" 
                              IsChecked="{Binding Path=flag,Mode=TwoWay}">
                </CheckBox>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>
</HeaderedContentControl>

我想要做的就是识别所选的列表框,并根据在文本框中输入的文本执行过滤。请帮帮我

提前多多感谢。

1 个答案:

答案 0 :(得分:0)

您无法选择ListBox并能够将内容写入TextBox。您可以使用SelectionChanged或其他方法

将引用保存到最后一个ListBox
private ListBox SelectedListBox = null;
private void ListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
    SelectedListBox = (sender as ListBox); 
}

一旦你引用了你最后选择的ListBox,就可以将TextChanged事件添加到TextBox中:

private void TextBox_TextChanged(object sender, TextChangedEventArgs e)
{
    if (SelectedListBox == null)
        return;

    string searchText = (sender as TextBox).Text;
    SelectedListBox.Items.Filter = (i) => { return ((string)i).Contains(searchText); };  // Or any other condition required
}