与MVVM wpf的交互

时间:2013-08-23 01:27:52

标签: c# wpf mvvm

我正在使用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键以激活事件以执行ClientsEnter命令:

<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>

我需要知道为什么它不起作用,按下后输入clientID消失,没有任何反应。即使是text =“输入客户名称或ID”也不会出现!有任何想法吗? 请注意,当我将密钥更改为空格时,它可以工作,但它不会从组合框中获取文本,

1 个答案:

答案 0 :(得分:1)

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

最后,我不建议使用C1 wpf控件