2012-01-24 5 views
1

두 번 클릭 할 때 페이지를 확대하는 WPF 문서 뷰어를 만듭니다. 이 목적을 위해 나는 문서 뷰어에서 한 페이지 위로 커서를 가져갈 때 커서를 손에 넣으려고하고 다른 곳에서는 화살표를 사용하려고합니다.WPF에서 커서 설정 documentViewer

가 나는 내 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> 

그러나 같이 설정 한, 나는 그것이 텍스트 커서의 기본 설정에서 페이지 위에있을 때 커서를 변경할 수없는 것.

답변

0

다음과 같은 문장을 시도 할 수 :

Cursor="Arrow" ForceCursor="True" 
관련 문제