Quantcast
Channel: Windows Presentation Foundation (WPF) forum
Viewing all articles
Browse latest Browse all 18858

Command binding - CanExecuteChanged seemingly not firing (using CommandReference)

$
0
0

I have a need to have a button that executes two commands in series from the ViewModel.  To do this, I found this great article from Josh Smith.

http://www.codeproject.com/KB/WPF/commandgroup.aspx

I modified his code and came up with my CommandCollection (basically same as his except instead of having a Commands property I just made my implementation inherit ObservableCollection<ICommand> directly).  

In order to add commands from bindings on my ViewModel, I found the CommandReference from the MVVM toolkit.  

http://joyfulwpf.blogspot.com/2009/05/mvvm-commandreference-and-keybinding.html

With the power of these two classes, I thought it would be easy.  I added the objects to the XAML, ran it, and found that my button was always disabled.  Upon investigating I found that the CanExecuteChanged event isn't firing and triggering the button to call CanExecute to refresh it's enabled state.

I found another thread about a similar issue, tried the solution (I think), and it still didn't work.

http://social.msdn.microsoft.com/Forums/en-ZA/wpf/thread/a533d019-d88d-4f39-bbda-c47342e023cd

(Since that thread was closed and answered, I thought it best to create a new one since the solution there doesn't appear to apply for me.)

I created a demo solution that demonstrates my problem.  There are 2 buttons, a Request and a Submit button.  Request can be executed at any time and just refreshes a number.  Submit is supposed to be enabled only when the number is above 50.  The Submit button runs first the SubmitCommand, and then the RequestCommand in order to pull the next item.

Below is the XAML:

 

<Windowx:Class="CommandBinding.MainWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:local="clr-namespace:CommandBinding"Title="MainWindow"Width="200"><Window.Resources><local:CommandReferencex:Key="SubmitCommand"Command="{Binding Path=SubmitCommand, UpdateSourceTrigger=PropertyChanged}"/><local:CommandReferencex:Key="RequestCommand"Command="{Binding Path=RequestCommand, UpdateSourceTrigger=PropertyChanged}"/><local:CommandCollectionx:Key="SubmitCommandCollection"><local:CommandReferenceCommand="{StaticResource ResourceKey=SubmitCommand}"/><local:CommandReferenceCommand="{StaticResource ResourceKey=RequestCommand}"/></local:CommandCollection></Window.Resources><StackPanel><ButtonCommand="{Binding Path=RequestCommand}"Margin="10, 10">Request</Button><ButtonCommand="{StaticResource ResourceKey=SubmitCommandCollection}"Margin="10, 0">Submit</Button><TextBoxText="{Binding Path=Number, Mode=OneWay}"IsReadOnly="True"Margin="10"TextAlignment="Center"/></StackPanel></Window>

 

My View Model is below:

 

using System;using System.Windows.Input;namespace CommandBinding.ViewModel
{publicclass ExampleViewModel : ViewModelObject
  {#region Fieldsprivateint _Number;private ICommand _SubmitCommand;private ICommand _RequestCommand;#endregion#region Propertiespublicint Number
    {get { return _Number; }set
      {if (_Number != value)
        {
          _Number = value;
          OnPropertyChanged("Number");
        }
      }
    }public ICommand SubmitCommand
    {get
      {if (_SubmitCommand == null)
        {
          _SubmitCommand = new RelayCommand<object>(RunSubmitCommand, CanRunSubmitCommand);
        }return _SubmitCommand;
      }
    }public ICommand RequestCommand
    {get
      {if (_RequestCommand == null)
        {
          _RequestCommand = new RelayCommand<object>(RunRequestCommand);
        }return _RequestCommand;
      }
    }#endregion#region Methdosprivatevoid RunSubmitCommand(object parameter)
    {
      Number = 0; //Simulate submitting the number and clearing
    }privatebool CanRunSubmitCommand(object parameter)
    {//Number = 100; //NOTE: If you uncomment this line, you'll see that the submit button will always be enabled, otherwise it will never be enabledreturn Number > 50;
    }privatevoid RunRequestCommand(object parameter)
    {
      Number = new Random().Next(1, 100);//CommandManager.InvalidateRequerySuggested(); //This seemingly does nothing//OnPropertyChanged("SubmitCommand"); //This also doesn't seem to help
    }#endregion
  }
}

 

Since the Number property is initially zero and when it changes the SubmitCommand's CanExecuteChanged event doesn't fire, it never gets enabled.  If you uncomment the line "Number = 100" (line number 66 in the ExampleViewModel.cs source code) then the button will ALWAYS be enabled.

When the request command executes I've tried both "CommandManager.InvalidateRequerySuggested()" and firing the PropertyChanged event on the SubmitCommand, hoping the binding system would reevaluate the command in either case.  No help there unfortunately.

I'm sure I'm missing something mind-numbingly simple, but please help!

Here you can find my sample solution (VS 2010):

http://cid-2712b8ee8d9edeff.office.live.com/self.aspx/Public/CommandBinding.zip

 


Viewing all articles
Browse latest Browse all 18858

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>