From f986e59659601108e64cf3475da99ca7b42c6f37 Mon Sep 17 00:00:00 2001 From: AShifter Date: Tue, 21 Nov 2017 15:26:14 -0700 Subject: fixed invalid command handling yoy it works --- ShiftOS.Engine/UI/ShiftButton.Designer.cs | 37 +++++++++++++++++++++++++++++++ ShiftOS.Engine/UI/ShiftButton.cs | 20 +++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 ShiftOS.Engine/UI/ShiftButton.Designer.cs create mode 100644 ShiftOS.Engine/UI/ShiftButton.cs (limited to 'ShiftOS.Engine/UI') diff --git a/ShiftOS.Engine/UI/ShiftButton.Designer.cs b/ShiftOS.Engine/UI/ShiftButton.Designer.cs new file mode 100644 index 0000000..a84ba4a --- /dev/null +++ b/ShiftOS.Engine/UI/ShiftButton.Designer.cs @@ -0,0 +1,37 @@ +namespace ShiftOS.Engine.UI +{ + partial class ShiftButton + { + /// + /// 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() + { + components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + } + + #endregion + } +} diff --git a/ShiftOS.Engine/UI/ShiftButton.cs b/ShiftOS.Engine/UI/ShiftButton.cs new file mode 100644 index 0000000..ebf6e2b --- /dev/null +++ b/ShiftOS.Engine/UI/ShiftButton.cs @@ -0,0 +1,20 @@ +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 ShiftOS.Engine.UI +{ + public partial class ShiftButton : UserControl + { + public ShiftButton() + { + InitializeComponent(); + } + } +} -- cgit v1.2.3