public XamlInkRenderer(Windows.UI.Xaml.Controls.Panel panel)
        {
            if (null == panel)
            {
                throw new System.ArgumentException("Argument cannot be null");
            }

            render = panel;
            livePaths = new System.Collections.Generic.Dictionary<uint, Windows.UI.Xaml.Shapes.Path>();
            liveStrokes = new System.Collections.Generic.Dictionary<uint, Windows.UI.Xaml.Media.PolyLineSegment>();
            bezierPaths = new System.Collections.Generic.Dictionary<Windows.UI.Input.Inking.InkStroke, Windows.UI.Xaml.Shapes.Path>();
            selectionPaths = new System.Collections.Generic.Dictionary<Windows.UI.Input.Inking.InkStroke, Windows.UI.Xaml.Shapes.Path>();
        }
Beispiel #2
0
        public XamlInkRenderer(Windows.UI.Xaml.Controls.Panel panel)
        {
            if (null == panel)
            {
                throw new System.ArgumentException("Argument cannot be null");
            }

            render         = panel;
            livePaths      = new System.Collections.Generic.Dictionary <uint, Windows.UI.Xaml.Shapes.Path>();
            liveStrokes    = new System.Collections.Generic.Dictionary <uint, Windows.UI.Xaml.Media.PolyLineSegment>();
            bezierPaths    = new System.Collections.Generic.Dictionary <Windows.UI.Input.Inking.InkStroke, Windows.UI.Xaml.Shapes.Path>();
            selectionPaths = new System.Collections.Generic.Dictionary <Windows.UI.Input.Inking.InkStroke, Windows.UI.Xaml.Shapes.Path>();
        }
Beispiel #3
0
 public abstract void SetValue(TValue targetValue, View targetShibaView, NativeView nativeView, NativeViewGroup parent);
Beispiel #4
0
 public override void SetValue(ShibaObject shibaObject, View targetShibaView, NativeView element, NativeViewGroup parent)
 {
 }