NavigationCommands.GoToPage Property

Definition

Gets the value that represents the Go To Page command.

public:
 static property System::Windows::Input::RoutedUICommand ^ GoToPage { System::Windows::Input::RoutedUICommand ^ get(); };
public static System.Windows.Input.RoutedUICommand GoToPage { get; }
static member GoToPage : System.Windows.Input.RoutedUICommand
Public Shared ReadOnly Property GoToPage As RoutedUICommand

Property Value

The routed UI command.

Default Values
Key Gesture N/A
UI Text Go To Page

Examples

The following example shows how to use the GoToPage command in conjunction with a FlowDocumentPageViewer. The FlowDocumentPageViewer provides an implementation that responds to the GoToPage command by going to the page specified by the text value of a TextBox control.

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<!-- GoToPage UI-->
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal">
  <TextBox Name="pageNumberTextBox">1</TextBox>
  <Button
    Command="NavigationCommands.GoToPage"
    CommandTarget="{Binding ElementName=flowDocumentPageViewer}"
    CommandParameter="{Binding ElementName=pageNumberTextBox,Path=Text}">Go To Page</Button>
</StackPanel>
<!-- The following FlowDocumentPageViewer is used to process NavigationCommands.GoToPage commands -->
<FlowDocumentPageViewer Name="flowDocumentPageViewer">
  <FlowDocument>
    <!-- Document Content-->
    <Paragraph>
      Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed vulputate, lacus non sagittis pharetra, diam dolor dictum tellus, et hendrerit odio risus nec erat. Nam sollicitudin imperdiet mi. Sed rutrum. Morbi vel nunc. Donec imperdiet. Morbi hendrerit leo. Maecenas imperdiet. Curabitur viverra tempor nisi. Phasellus vitae augue sit amet neque venenatis elementum. Proin posuere lobortis quam. Curabitur et neque. Donec ac sem vitae libero pharetra luctus. Fusce purus. Nulla vehicula, leo commodo dictum lobortis, odio augue accumsan ante, id dictum nisi libero quis diam. Nam augue erat, malesuada eu, tincidunt eu, dictum ut, ante. In vel magna vel ligula faucibus lobortis. Praesent a felis non mi fringilla vulputate. Integer quis tellus cursus elit tincidunt vehicula. Morbi commodo sem eu eros. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae;
    </Paragraph>
  </FlowDocument>
</FlowDocumentPageViewer>
</Window>

Remarks

This command indicates the intention to change the zoom.

DocumentViewer and FlowDocumentPageViewer implement support for responding to the GoToPage command, although you are not required to use it; in many cases the implementation in response to that command is the responsibility of the application writer.

XAML Attribute Usage

<object property="NavigationCommands.GoToPage"/>  

Applies to

See also