diff --git a/Switch_Toolbox_Library/Forms/Editors/UV/UVEditorAdvanced.Designer.cs b/Switch_Toolbox_Library/Forms/Editors/UV/UVEditorAdvanced.Designer.cs new file mode 100644 index 00000000..0112eb92 --- /dev/null +++ b/Switch_Toolbox_Library/Forms/Editors/UV/UVEditorAdvanced.Designer.cs @@ -0,0 +1,45 @@ +namespace Toolbox.Library.Forms +{ + partial class UVEditorAdvanced + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.SuspendLayout(); + // + // UVEditorAdvanced + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Name = "UVEditorAdvanced"; + this.Size = new System.Drawing.Size(444, 351); + this.ResumeLayout(false); + + } + + #endregion + } +} diff --git a/Switch_Toolbox_Library/Forms/Editors/UV/UVEditorAdvanced.cs b/Switch_Toolbox_Library/Forms/Editors/UV/UVEditorAdvanced.cs new file mode 100644 index 00000000..ad59fc10 --- /dev/null +++ b/Switch_Toolbox_Library/Forms/Editors/UV/UVEditorAdvanced.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Toolbox.Library.Forms +{ + public partial class UVEditorAdvanced : UserControl + { + public UVViewport Viewport; + + public UVEditorAdvanced() + { + InitializeComponent(); + + Viewport = new UVViewport(); + Viewport.Dock = DockStyle.Fill; + Controls.Add(Viewport); + } + } +} diff --git a/Switch_Toolbox_Library/Forms/Editors/UV/UVEditorAdvanced.resx b/Switch_Toolbox_Library/Forms/Editors/UV/UVEditorAdvanced.resx new file mode 100644 index 00000000..1af7de15 --- /dev/null +++ b/Switch_Toolbox_Library/Forms/Editors/UV/UVEditorAdvanced.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file