* Merge and modernize the binding projects * Remove UWP and watchOS * Add the native assets projects * Rename bootstrapper.ps1 to build.ps1 * Add new device tests * Rework the test skipping feature --------- Co-authored-by: Jerome Laban <jerome.laban@nventive.com>
14 lines
553 B
XML
14 lines
553 B
XML
<Window
|
|
x:Class="SkiaSharpSample.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:SkiaSharpSample"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:skia="using:SkiaSharp.Views.Windows"
|
|
mc:Ignorable="d"
|
|
Title="SkiaSharp Sample">
|
|
|
|
<skia:SKXamlCanvas PaintSurface="OnPaintSurface" IgnorePixelScaling="True" />
|
|
|
|
</Window>
|