I want to increase the height or width(through scrolling) of InkCanvas
when the user Ink near the end of the InkCanvas
Like OneNote.
Solution Tried:
- I tried
ScrollViewer
forInkCanvas
but It didn't work - I thought of re-styling it but I can't find the
InkCanvas
in generic.xaml
Here is my code for InkCanvas:
<ScrollViewer Grid.Row="1">
<Grid>
<InkCanvas Name="PATH_INK_CANVAS" Canvas.ZIndex="-1"/>
<RichEditBox Name="PATH_RICH_EDIT_BOX" Canvas.ZIndex="0" PlaceholderText="Input Text" Style="{StaticResource RichEditBoxStyle}"/>
</Grid>
</ScrollViewer>