* 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>
63 lines
1.9 KiB
C#
63 lines
1.9 KiB
C#
namespace SkiaSharpSample
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
|
this.skiaView = new SkiaSharp.Views.Desktop.SKControl();
|
|
this.SuspendLayout();
|
|
//
|
|
// skiaView
|
|
//
|
|
this.skiaView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.skiaView.Location = new System.Drawing.Point(0, 0);
|
|
this.skiaView.Name = "skiaView";
|
|
this.skiaView.Size = new System.Drawing.Size(774, 529);
|
|
this.skiaView.TabIndex = 0;
|
|
this.skiaView.Text = "skControl1";
|
|
this.skiaView.PaintSurface += new System.EventHandler<SkiaSharp.Views.Desktop.SKPaintSurfaceEventArgs>(this.skiaView_PaintSurface);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(192F, 192F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.ClientSize = new System.Drawing.Size(774, 529);
|
|
this.Controls.Add(this.skiaView);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "Form1";
|
|
this.Text = "SkiaSharp";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private SkiaSharp.Views.Desktop.SKControl skiaView;
|
|
}
|
|
}
|
|
|