Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > Avalon

Vista - handling command in menuitem

 
 
Old 08-08-2006   #1 (permalink)
viRtual


 
 

handling command in menuitem

hi all, I set command to menuitem and I add command binding to rootpage
to enable command. It doesn't work. If I add command binding to
menuitem it works. the code as following:

XMAL :
<MenuItem x:Name="XMenuItem" Header="MenuItem" Command
="Open"/>

In Code Behind:

public partial class MenuToolBarTestCase : Page
{
public MenuToolBarTestCase()
{
InitializeComponent();
Loaded += new
RoutedEventHandler(MenuToolBarTestCase_Loaded);
}
void MenuToolBarTestCase_Loaded(object sender, RoutedEventArgs
e)
{
CommandBinding CB = new CommandBinding(XMenuItem.Command);
CB.CanExecute += new
CanExecuteRoutedEventHandler(CB_CanExecute);
CB.Executed += new ExecutedRoutedEventHandler(CB_Executed);
//It doesn't work
this.CommandBindings.Add(CB);
// If I change the code as following it works
XMenuItem.CommandBindings.Add(CB);
}
}

If command is assigned to control (e.g. button and menuitem). It can't
be enable by parent or other controls via commandbinding?


Virtual


My System SpecsSystem Spec
 

Thread Tools


Similar Threads
Thread Forum
Running a command from inside a script, command line is corrupted PowerShell
Solved Make a command prompt run a command as soon as it opens? General Discussion
Command Line Ren (Rename) command broken? Vista General


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46