我正在尝试使用SurfaceInkCanvas
做一个简单的示例,但是当我尝试使用触摸时它不会绘制任何内容,尽管EditingMode="Ink"
以下是代码:
<s:SurfaceWindow x:Class="SurfaceApplication1.SurfaceWindow1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="http://schemas.microsoft.com/surface/2008"
Title="SurfaceApplication1"
>
<Grid>
<s:SurfaceInkCanvas x:Name="PostcardCanvas"
EditingMode="Ink"
Background="Orange"
Height="320"
IsHitTestVisible="False"
UsesTouchShape="False"
Width="426" />
</Grid>
</s:SurfaceWindow>
那么,我在这里缺少什么?
答案 0 :(得分:0)
更改
IsHitTestVisible="False"
到
IsHitTestVisible="True"