NavigationCommands.DecreaseZoom Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera wartość reprezentującą Decrease Zoom
polecenie .
public:
static property System::Windows::Input::RoutedUICommand ^ DecreaseZoom { System::Windows::Input::RoutedUICommand ^ get(); };
public static System.Windows.Input.RoutedUICommand DecreaseZoom { get; }
static member DecreaseZoom : System.Windows.Input.RoutedUICommand
Public Shared ReadOnly Property DecreaseZoom As RoutedUICommand
Wartość właściwości
Kierowane polecenie interfejsu użytkownika.
Wartości domyślne | |
---|---|
Gest klawisza | Nie dotyczy |
Tekst interfejsu użytkownika | Zmniejsz powiększenie |
Przykłady
W poniższym przykładzie pokazano, jak używać DecreaseZoom w połączeniu z elementem FlowDocumentPageViewer. Zapewnia FlowDocumentPageViewer implementację, która reaguje na DecreaseZoom polecenie, zmniejszając procent powiększenia.
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<!-- NavigationCommands.DecreaseZoom -->
<MenuItem
Command="NavigationCommands.DecreaseZoom"
CommandTarget="{Binding ElementName=flowDocumentPageViewer}" />
<!-- The following FlowDocumentPageViewer is used to process NavigationCommands.DecreaseZoom 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>
Uwagi
To polecenie wskazuje zamiar zmniejszenia powiększenia.
DocumentViewer, FlowDocumentReader, FlowDocumentScrollVieweri FlowDocumentPageViewer implementuj obsługę odpowiadania na DecreaseZoom polecenie, chociaż nie jest wymagane, aby go używać. W wielu przypadkach implementacja w odpowiedzi na to polecenie jest obowiązkiem modułu zapisywania aplikacji.
Użycie atrybutu języka XAML
<object property="NavigationCommands.DecreaseZoom"/>