wpf工具栏中的非活动命令

时间:2013-07-29 11:31:00

标签: c# wpf toolbar routedcommand

我有工具栏(添加和删除命令)和TabControl的应用程序。 TabControl的每个tabItem中都有VariableGrid控件。

查看图片:http://trueimages.ru/view/cNFyf

<DockPanel >
    <ToolBarTray DockPanel.Dock="Top">
        <ToolBar>
            <Button Command="{x:Static VariableGrid:VariableGrid.AddRowCommand}"/>
            <Button Content="Delete" Command="ApplicationCommands.Delete" />
        </ToolBar>
    </ToolBarTray>

    <TabControl x:Name="tc">
        <TabItem Header="Tab 1">
            <vg:VariableGrid ItemsSource="{Binding Items1, Mode=TwoWay}"/>            </TabItem>
        <TabItem Header="Tab 2">
            <vg:VariableGrid ItemsSource="{Binding Items2, Mode=TwoWay}"/>
        </TabItem>
    </TabControl>
<DockPanel >

工具栏命令在我的控件中实现:

public partial class VariableGrid : DataGrid, INotifyPropertyChanged 
{
    public static RoutedCommand AddRowCommand = new RoutedCommand();
    public VariableGrid()
    {
        this.CommandBindings.Add(new CommandBinding(VariableGrid.AddRowCommand, AddRow)); 
        this.CommandBindings.Add(new CommandBinding(ApplicationCommands.Delete, R    emoveRow, CanRemoveRow)); 
    }

    private void AddRow(object sender, ExecutedRoutedEventArgs e)
    {
        …
    }
    private void RemoveRow(object sender, ExecutedRoutedEventArgs e)
    {
        …
    }

    private void CanRemoveRow(object sender, CanExecuteRoutedEventArgs e)
    {
        e.CanExecute = (SelectedItems.Count > 0);
    }
}

很少有工具栏中的命令被禁用的情况:

  1. 应用程序运行时
  2. 当我点击DataGrid的灰色字段
  3. 当DataGrid为空时
  4. 当选择任何一行DataGrid时 - 工具栏的命令变为活动状态。

    你能帮我解决一下我的问题吗?我应该设置什么CommandTarget工具栏按钮?

    PS:我的应用程序中有两个VariableGrids。这就是为什么我不能将CommandTarget设置为“{Binding ElementName = variableGrid}”。我认为它应该设置为FocusedElement。但我不知道该怎么做。

1 个答案:

答案 0 :(得分:0)

WPF应该每隔一段时间调用一次CanRemoveRow方法来检查是否可以删除一行。您应该在此方法中放置一个布尔条件来回答该问题。如果您想要AddRowCommand的类似功能,请在绑定CanAddRow的位置添加AddRowCommand方法。

可能想要阅读MSDN上的Commanding Overview

更新&gt;&gt;&gt;

哦......你想知道这些禁用条件使用什么代码吗?我会这样假设:

应用程序运行时

我猜你的意思是“当应用程序繁忙时”...添加一个名为IsBusy的布尔属性,当应用程序执行任何长时间运行的进程时将其设置为true,然后将!IsBusy添加到你的方法条件。

当我点击DataGrid的灰色字段

时 当DataGrid为空时

通过在您的方法条件中添加SelectedItem,可以使用DataGrid的{​​{1}}属性判断这两个条件。

因此,您需要以下内容:

&& dataGrid.SelectedItem != null