When user clicks on icon area of MenuItem, DelegateCommand does not fire. - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T19:15:37Zhttp://stackoverflow.com/feeds/question/1027993http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1027993/when-user-clicks-on-icon-area-of-menuitem-delegatecommand-does-not-fire0When user clicks on icon area of MenuItem, DelegateCommand does not fire.Edward Tanguay2009-06-22T15:57:38Z2009-06-22T15:57:38Z
<p>If you use the <strong>DelegateCommand</strong> in the <a href="http://www.codeplex.com/wpf/Release/ProjectReleases.aspx?ReleaseId=14962" rel="nofollow">MVVM Template</a> and build menus <strong>dynamically</strong> as in the code below, then the DelegateCommand will not fire when the user clicks on the <strong>icon</strong> area on the MenuItem.</p>
<p>Is there anyway to either <strong>fix this</strong> or make the icon area (to the left of the header) <strong>disappear</strong>?</p>
<p><strong>MainView.xaml:</strong></p>
<pre><code><Window x:Class="TestMenuMvvm.Views.MainView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:c="clr-namespace:TestMenuMvvm.Commands"
xmlns:vm="clr-namespace:TestMenuMvvm.ViewModels"
xmlns:v="clr-namespace:TestMenuMvvm.Views"
Title="Main Window" Height="400" Width="800">
<Window.Resources>
<DataTemplate x:Key="MenuTemplate">
<MenuItem
Header="{Binding Title}"
Command="{Binding DataContext.SwitchPageCommand,
RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Menu}}}"
CommandParameter="{Binding IdCode}"/>
</DataTemplate>
</Window.Resources>
<DockPanel LastChildFill="False">
<Menu DockPanel.Dock="Top">
<MenuItem
Header="File" ItemsSource="{Binding AllPageViewModels}"
ItemTemplate="{StaticResource MenuTemplate}"/>
</Menu>
</DockPanel>
</Window>
</code></pre>
<p><strong>MainViewModel.cs:</strong></p>
<pre><code>using System;
using System.Windows;
using System.Windows.Input;
using TestMenuMvvm.Commands;
using System.Collections.ObjectModel;
namespace TestMenuMvvm.ViewModels
{
public class MainViewModel : ViewModelBase
{
#region DelegateCommand: SwitchPage
private DelegateCommand switchPageCommand;
public ICommand SwitchPageCommand
{
get
{
if (switchPageCommand == null)
{
switchPageCommand = new DelegateCommand(SwitchPage, CanSwitchPage);
}
return switchPageCommand;
}
}
private void SwitchPage()
{
Console.WriteLine("was in switch page");
}
private bool CanSwitchPage()
{
return true;
}
#endregion
#region ViewModelProperty: AllPageViewModels
private ObservableCollection<ViewModelBase> _allPageViewModels = new ObservableCollection<ViewModelBase>();
public ObservableCollection<ViewModelBase> AllPageViewModels
{
get
{
return _allPageViewModels;
}
set
{
_allPageViewModels = value;
OnPropertyChanged("AllPageViewModels");
}
}
#endregion
public MainViewModel()
{
PageCloseViewModel pageCloseViewModel = new PageCloseViewModel();
PageOpenViewModel pageOpenViewModel = new PageOpenViewModel();
_allPageViewModels.Add(pageCloseViewModel);
_allPageViewModels.Add(pageOpenViewModel);
}
}
}
</code></pre>
<p><strong>PageCloseViewModel.cs:</strong></p>
<pre><code>namespace TestMenuMvvm.ViewModels
{
class PageCloseViewModel : ViewModelBase
{
#region ViewModelProperty: Title
private string _title;
public string Title
{
get
{
return _title;
}
set
{
_title = value;
OnPropertyChanged("Title");
}
}
#endregion
public PageCloseViewModel()
{
Title = "Close";
}
}
}
</code></pre>
<p><strong>PageOpenViewModel.cs:</strong></p>
<pre><code>namespace TestMenuMvvm.ViewModels
{
class PageOpenViewModel : ViewModelBase
{
#region ViewModelProperty: Title
private string _title;
public string Title
{
get
{
return _title;
}
set
{
_title = value;
OnPropertyChanged("Title");
}
}
#endregion
public PageOpenViewModel()
{
Title = "Open";
}
}
}
</code></pre>