![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| 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. |
| |||||||
| |
| | #1 (permalink) |
| | 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 Specs![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| Running a command from inside a script, command line is corrupted | PowerShell | |||
Make a command prompt run a command as soon as it opens? | General Discussion | |||
| Command Line Ren (Rename) command broken? | Vista General | |||