Esempio n. 1
0
            public SKSwapChainPanelJsInterop(SKSwapChainPanel panel)
            {
                Panel = panel ?? throw new ArgumentNullException(nameof(panel));

                jsHandle = Interlocked.Increment(ref handleCounter);
                Handle   = JSObjectHandle.Create(this, this);
            }
Esempio n. 2
0
 protected RenderingLoopAnimator(T from, T to)
     : base(from, to)
 {
     Handle = JSObjectHandle.Create(this, Metadata.Instance);
 }
 public RenderingLoopFloatAnimator(float from, float to)
     : base(from, to)
 {
     Handle = JSObjectHandle.Create(this, Metadata.Instance);
 }
Esempio n. 4
0
 public SkiaSharpFunctionsJsInterop()
 {
     jsHandle = Interlocked.Increment(ref handleCounter);
     Handle   = JSObjectHandle.Create(this, this);
 }
Esempio n. 5
0
 public Document(JSObjectHandle handle) : base(handle)
 {
 }
Esempio n. 6
0
 internal Window(JSObjectHandle currentHandle) : base(currentHandle)
 {
 }
Esempio n. 7
0
 internal Document2(JSObjectHandle currentHandle) : base(currentHandle)
 {
 }
Esempio n. 8
0
 public Node(JSObjectHandle handle) : base(handle)
 {
 }
Esempio n. 9
0
 public JSObject(JSObjectHandle handle)
 {
     _handle = handle;
 }