Em mới học về XAML, hiện tại đang học đến Command, đến đây em sử dụng một đoạn code trên mạng để tìm hiểu, thì em gặp được lỗi này:
*Và đây là code của em: *
XAML :
<Window x:Class="WPF_Knowledge.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WPF_Knowledge"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Window.CommandBindings>
<CommandBinding Command="local:CustomCommand.Exit"
CanExecute="CustomCommand1_CanExecute"
Executed="CustomCommand1_Executed" />
</Window.CommandBindings>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Menu>
<MenuItem Header="File">
<MenuItem Command="local:CustomCommand.Exit" />
</MenuItem>
</Menu>
<StackPanel Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center">
<Button Command="local:CustomCommand.Exit">Exit</Button>
</StackPanel>
</Grid>
Code-Behind :
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void CustomCommand1_CanExecute(object sender, CanExecuteRoutedEventArgs e)
{
e.CanExecute = true;
}
private void CustomCommand1_Executed(object sender, ExecutedRoutedEventArgs e)
{
Application.Current.Shutdown();
}
}
public static class CustomCommand
{
public static readonly RoutedUICommand Exit = new RoutedUICommand
(
"Exit",
"Exit",
typeof(CustomCommand),
new InputGestureCollection()
{ new KeyGesture(Key.F4,ModifierKeys.Alt)}
);
}
Em là người mới, mong mọi người có thể giúp đỡ ạ!!