When user clicks on icon area of MenuItem, DelegateCommand does not fire. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T19:15:37Z http://stackoverflow.com/feeds/question/1027993 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1027993/when-user-clicks-on-icon-area-of-menuitem-delegatecommand-does-not-fire 0 When user clicks on icon area of MenuItem, DelegateCommand does not fire. Edward Tanguay 2009-06-22T15:57:38Z 2009-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>&lt;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"&gt; &lt;Window.Resources&gt; &lt;DataTemplate x:Key="MenuTemplate"&gt; &lt;MenuItem Header="{Binding Title}" Command="{Binding DataContext.SwitchPageCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Menu}}}" CommandParameter="{Binding IdCode}"/&gt; &lt;/DataTemplate&gt; &lt;/Window.Resources&gt; &lt;DockPanel LastChildFill="False"&gt; &lt;Menu DockPanel.Dock="Top"&gt; &lt;MenuItem Header="File" ItemsSource="{Binding AllPageViewModels}" ItemTemplate="{StaticResource MenuTemplate}"/&gt; &lt;/Menu&gt; &lt;/DockPanel&gt; &lt;/Window&gt; </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&lt;ViewModelBase&gt; _allPageViewModels = new ObservableCollection&lt;ViewModelBase&gt;(); public ObservableCollection&lt;ViewModelBase&gt; 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>