Skip to content

Instantly share code, notes, and snippets.

@jamesmcroft
Created March 8, 2016 11:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesmcroft/9fb8fc7b98636e895eeb to your computer and use it in GitHub Desktop.
Save jamesmcroft/9fb8fc7b98636e895eeb to your computer and use it in GitHub Desktop.
<UserControl
x:Name="ControlRoot"
x:Class="WinUX.Xaml.Controls.Inking.DrawingCanvas"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignWidth="500"
d:DesignHeight="200">
<Grid>
<Grid x:Name="RenderTargetGrid" Background="#FFFFFFFF" />
<InkCanvas x:Name="DrawingArea" />
</Grid>
</UserControl>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment