Udostępnij za pośrednictwem


Jak włączyć polecenie

W poniższym przykładzie pokazano, jak używać poleceń w programie Windows Presentation Foundation (WPF). W przykładzie pokazano, jak skojarzyć element z RoutedCommand elementem Button, utworzyć element CommandBinding, i utworzyć programy obsługi zdarzeń, które implementują element RoutedCommand. Aby uzyskać więcej informacji na temat poleceń, zobacz Omówienie poleceń.

Przykład

Pierwsza sekcja kodu tworzy interfejs użytkownika (UI), który składa się z Button elementu i StackPanel, i tworzy element CommandBinding , który kojarzy programy obsługi poleceń z elementem RoutedCommand.

Właściwość Command obiektu Button jest skojarzona z poleceniem Close .

Element CommandBinding jest dodawany do CommandBindingCollection katalogu głównego Window. Programy Executed obsługi zdarzeń i CanExecute są dołączone do tego powiązania i skojarzone z poleceniem Close .

CommandBinding Bez logiki poleceń nie ma tylko mechanizmu wywoływania polecenia. Po kliknięciu ButtonPreviewExecutedRoutedEvent elementu element jest wywoływany w obiekcie docelowym polecenia, po którym następuje ExecutedRoutedEvent. Te zdarzenia przechodzą przez drzewo elementów w poszukiwaniu tego konkretnego CommandBinding polecenia. Warto zauważyć, że ponieważ RoutedEvent tunel i bąbelek przez drzewo elementów należy zachować ostrożność w miejscu, w którym CommandBinding jest umieszczana. Jeśli element CommandBinding znajduje się w równorzędnym obiekcie docelowym polecenia lub innym węźle, który nie znajduje się w trasie RoutedEvent, CommandBinding nie będzie dostępny.

<Window x:Class="WCSamples.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="CloseCommand"
    Name="RootWindow"
    >
  <Window.CommandBindings>
    <CommandBinding Command="ApplicationCommands.Close"
                    Executed="CloseCommandHandler"
                    CanExecute="CanExecuteHandler"
                    />
  </Window.CommandBindings>
  <StackPanel Name="MainStackPanel">
    <Button Command="ApplicationCommands.Close" 
            Content="Close File" />
  </StackPanel>
</Window>
// Create ui elements.
StackPanel CloseCmdStackPanel = new StackPanel();
Button CloseCmdButton = new Button();
CloseCmdStackPanel.Children.Add(CloseCmdButton);

// Set Button's properties.
CloseCmdButton.Content = "Close File";
CloseCmdButton.Command = ApplicationCommands.Close;

// Create the CommandBinding.
CommandBinding CloseCommandBinding = new CommandBinding(
    ApplicationCommands.Close, CloseCommandHandler, CanExecuteHandler);

// Add the CommandBinding to the root Window.
RootWindow.CommandBindings.Add(CloseCommandBinding);
' Create ui elements.
Dim CloseCmdStackPanel As New StackPanel()
Dim CloseCmdButton As New Button()
CloseCmdStackPanel.Children.Add(CloseCmdButton)

' Set Button's properties.
CloseCmdButton.Content = "Close File"
CloseCmdButton.Command = ApplicationCommands.Close

' Create the CommandBinding.
Dim CloseCommandBinding As New CommandBinding(ApplicationCommands.Close, AddressOf CloseCommandHandler, AddressOf CanExecuteHandler)

' Add the CommandBinding to the root Window.
RootWindow.CommandBindings.Add(CloseCommandBinding)

Następna sekcja kodu implementuje Executed programy obsługi zdarzeń i CanExecute .

Procedura Executed obsługi wywołuje metodę w celu zamknięcia otwartego pliku. Procedura CanExecute obsługi wywołuje metodę w celu określenia, czy plik jest otwarty. Jeśli plik jest otwarty, CanExecute jest ustawiony na truewartość ; w przeciwnym razie jest ustawiony na falsewartość .

// Executed event handler.
private void CloseCommandHandler(object sender, ExecutedRoutedEventArgs e)
{
    // Calls a method to close the file and release resources.
    CloseFile();
}

// CanExecute event handler.
private void CanExecuteHandler(object sender, CanExecuteRoutedEventArgs e)
{
    // Call a method to determine if there is a file open.
    // If there is a file open, then set CanExecute to true.
    if (IsFileOpened())
    {
        e.CanExecute = true;
    }
    // if there is not a file open, then set CanExecute to false.
    else
    {
        e.CanExecute = false;
    }
}
' Executed event handler.
Private Sub CloseCommandHandler(ByVal sender As Object, ByVal e As ExecutedRoutedEventArgs)
    ' Calls a method to close the file and release resources.
    CloseFile()
End Sub

' CanExecute event handler.
Private Sub CanExecuteHandler(ByVal sender As Object, ByVal e As CanExecuteRoutedEventArgs)
    ' Call a method to determine if there is a file open.
    ' If there is a file open, then set CanExecute to true.
    If IsFileOpened() Then
        e.CanExecute = True
    ' if there is not a file open, then set CanExecute to false.
    Else
        e.CanExecute = False
    End If
End Sub

Zobacz też