Установка курсора в WPF documentViewer

Я создаю просмотрщик документов WPF, который при двойном щелчке мыши увеличивает масштаб страницы. С этой целью я пытаюсь заставить курсор превратиться в руку, когда над страницей в средстве просмотра документов, и стрелку, когда в другом месте.

У меня мой xaml настроен так

<UserControl x:Class="WPFXPSViewerControl.XPSControl"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
                     xmlns:UI="clr-namespace:Bluewire.Epro.UI;assembly=EproClientCore"
         xmlns:System="clr-namespace:System;assembly=mscorlib" mc:Ignorable="d"
         Loaded="Window_Loaded"
         Height="1200" MouseDoubleClick="Double_Click">
<Grid Grid.Row="2" Grid.Column="2" Cursor="Hand">
    <Grid.RowDefinitions>
        <RowDefinition Height="*"/>
        <RowDefinition Height="20" Cursor="Arrow"/>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
        <ColumnDefinition />
        <ColumnDefinition />
    </Grid.ColumnDefinitions>

    <DocumentViewer Name="document" Grid.ColumnSpan="2" Cursor="Arrow">

    </DocumentViewer>
    <Button Width="200" Name="btnZoomIn" Grid.Row="1" Grid.Column="0" Cursor="Hand" Click="btnZoomIn_Click">Zoom In</Button>
    <Button Width="200" Name="btnZoomOut" Grid.Row="1" Grid.Column="1" Cursor="Hand" Click="btnZoomOut_Click">Zoom Out</Button>
</Grid>

</UserControl>

Тем не менее, я не могу изменить курсор, когда он находится над страницей от настройки по умолчанию текстового курсора.

1 ответ

Вы можете попробовать следующие утверждения:

Cursor="Arrow"  ForceCursor="True"
Другие вопросы по тегам