1

我有一个UserControl,我有一个DataDridDataGrid我有两个ComboBoxes。现在我想要做的是当我从应该启用ComboBoxes的按钮之外的按钮中选择任何项目时。DataGrid

DataGrid的绑定到一个组合框也是ItemSource如此。

我尝试使用MuliDatatriggers但他们失败了,因为按钮在外面,DataGrid所以这些按钮ComboBoxes将不可用。

<DataGrid>
   <DataGrid.Columns>
      <DataGridTemplateColumn Width="Auto">
         <DataGridTemplateColumn.CellTemplate>
            <DataTemplate>
               <ComboBox Name="Combo1" ItemsSource="{Binding Lst1,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" DisplayMemberPath="Code1" SelectedValue="{Binding CodeID1,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}">      
               <ComboBox Name="Combo2" ItemsSource="{Binding Lst2,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" DisplayMemberPath="Code2" SelectedValue="{Binding CodeID2,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}">
            </DataTemplate>
         </DataGridTemplateColumn.CellTemplate>
      </DataGridTemplateColumn>
   </DataGrid.Columns>
</DataGrid>

<Button Name="Add" IsEnabled="{Binding IsAddEnabled,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"/>
4

2 回答 2

2

这个问题已经发布了很多答案。

例如:选择组合框项目时启用文本框

对您来说更好的方法是将MVVM应用于您的应用程序。

于 2013-07-18T06:57:27.947 回答
0

我同意 @MikroDel 和 MVVM 的观点,这是在 wpf 中正常工作的唯一方法。我做这样的事情,但不是用两个 cmb,也不是在 datagrid 上,但根本不需要不同,因为在每个组合中你都设置了选定的viewModel 上您的属性的索引,按钮也是如此。

在我使用的这个例子中,RelayCommand你可以阅读关于使用它的hare,但不是这个 q 主题。

另外我使用了一个转换器,因为如果选择 index = 0 也可以启用按钮,所以它实现起来非常简单

 namespace MCSearchMVVM
 {
     class MCBindButtonToComboBox : IValueConverter
     {

         public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
         {
            if (value == null) 
               return false;
           return true;
          }

          public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
          {            throw new NotImplementedException();        }
      }
 }

现在到真正的东西;)在那之前的小建议是我喜欢总是将视图(.xaml 文件)和 vm(.cs 文件)放在同一个文件夹中,这就是为什么我发现这个例子非常快,哈哈

首先我们从视图开始:

<UserControl x:Class="MCSearchMVVM.AddFilePage"    
         ...
         xmlns:local="clr-namespace:MCSearchMVVM"
         ...>

<UserControl.Resources>
    <local:MCBindButtonToComboBox x:Key="enableCon"/>
</UserControl.Resources>

<Grid>
    <Grid.ColumnDefinitions>
       ...
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
        ...
    </Grid.RowDefinitions>
    <Grid.Background>
        ...
    </Grid.Background>

    <Button Content="Browse.." 
            ...
            Command="{Binding BrowseCommand}"          
            IsEnabled="{Binding FileKindIndexSelected,
                        Converter={StaticResource enableCon}}"
            .../>
    <ComboBox ... SelectedIndex="{Binding FileKindIndexSelected, Mode=TwoWay}" ... >
        ...
    </ComboBox>
   ...
</Grid>

现在 ViewModel :

public class AddFileViewModel : ObservableObject, IPageViewModel
{
    ...

    private int _fileKindIndexSelected;
    public int FileKindIndexSelected
    {
        get { return _fileKindIndexSelected; }
        set { SetField(ref _fileKindIndexSelected, value, "FileKindIndexSelected");}
    }
    ...
 }

和 SetField 函数

 public abstract class ObservableObject : INotifyPropertyChanged
 {
    [Conditional("DEBUG")]
    [DebuggerStepThrough]
    public virtual void VerifyPropertyName(string propertyName)
    {
        if (TypeDescriptor.GetProperties(this)[propertyName] == null)
        {
            string msg = "Invalid property name: " + propertyName;

            if (this.ThrowOnInvalidPropertyName)
                throw new Exception(msg);
            else
                Debug.Fail(msg);
        }
    }

     protected virtual bool ThrowOnInvalidPropertyName { get; private set; }

     #region INotifyPropertyChanged
    public virtual void RaisePropertyChanged(string propertyName)
    {
        this.VerifyPropertyName(propertyName);
        OnPropertyChanged(propertyName);
    }
    public event PropertyChangedEventHandler PropertyChanged;
    protected virtual void OnPropertyChanged(string propertyName)
    {
        PropertyChangedEventHandler handler = this.PropertyChanged;
        if (handler != null)
        {
            var e = new PropertyChangedEventArgs(propertyName);
            handler(this, e);
        }
    }

    protected bool SetField<T>(ref T field, T value, string propertyName)
    {
        if (EqualityComparer<T>.Default.Equals(field, value))
            return false;
        field = value;
        OnPropertyChanged(propertyName);
        return true;
    }
    #endregion // INotifyPropertyChanged
 }
}

我希望这个方向是有帮助的..对不起我的英语不好=))

于 2013-07-18T08:49:59.437 回答