与MVVM wpf的交互

本文关键字:交互 wpf MVVM | 更新日期: 2023-09-27 18:28:47

我正在使用具有MVVM模式的ComponentOne WPF控件。

我的ViewModel中有以下内容:

public ICommand ClientsEnter
{
    get
    {
        if (this.m_ClientsEnter == null)
        {
            this.m_ClientsEnter = new DelegateCommand<string>(ClientsLostFocusExecute, 
ClientsLostFocusCanExecute);
        }
        return m_ClientsEnter;
    }
}

以及一个可观察的集合:

public ObservableCollection<Client> Clients
{
    get { return m_Clients; }
    set
    {
        m_Clients = value;
        RaisePropertyChanged("Clients");
    }
}

在Xaml中,我添加了一个ComponentOne组合框,我可以在其中输入ClientName或ID,然后按enter键触发Event以执行ClientEnter命令:

<Custom1:C1ComboBox  Grid.Row="2" Grid.Column="1" Height="24" Name="cmbClients" 
    HorizontalAlignment="Left" VerticalAlignment="Center" ItemsSource="{Binding 
    Clients, Mode=OneWay}" SelectedValuePath="ClientID" DisplayMemberPath="NameE" 
    IsEditable="True" Text="Enter Client Name Or ID" SelectedValue="{Binding 
    Path=Filter.ClientID, Mode=TwoWay}" MinWidth="150" Margin="0,2" Width="189">
    <i:Interaction.Triggers>
        <ei:KeyTrigger Key="enter"  FiredOn="KeyUp" ActiveOnFocus="True" SourceName=
            "cmbClients">
            <i:InvokeCommandAction Command="{Binding ClientsEnter, Mode=OneWay}" 
                CommandParameter="{Binding Text,ElementName=cmbClients}" 
                CommandName="KeyDown"/>
        </ei:KeyTrigger>
    </i:Interaction.Triggers>
</Custom1:C1ComboBox>

我需要知道为什么它不起作用,在按下回车键后,客户端ID消失,什么也没发生。甚至文本="输入客户端名称或ID"也不会出现!有什么想法吗?请注意,当我将键更改为空格时,它可以工作,但不会从组合框、中提取文本

与MVVM wpf的交互

在花了两天时间调查这个问题后,我发现C1Combobox中有一个错误,因为我用telerik Comboxbox替换了它,并添加了相同的触发器,除了控件之外,没有更改xaml中的任何内容,它运行良好。

最后,我不建议C1 wpf控制