diff options
| author | AShifter <[email protected]> | 2017-11-21 15:26:14 -0700 |
|---|---|---|
| committer | AShifter <[email protected]> | 2017-11-21 15:26:14 -0700 |
| commit | f986e59659601108e64cf3475da99ca7b42c6f37 (patch) | |
| tree | 519cd777886f86c41d1a9b56cafe6fb64d4fc8da /ShiftOS.Engine | |
| parent | 8ec044f8c9cab43ac10c86ce605264e351f3e237 (diff) | |
| download | shiftos-rewind-f986e59659601108e64cf3475da99ca7b42c6f37.tar.gz shiftos-rewind-f986e59659601108e64cf3475da99ca7b42c6f37.tar.bz2 shiftos-rewind-f986e59659601108e64cf3475da99ca7b42c6f37.zip | |
fixed invalid command handling
yoy it works
Diffstat (limited to 'ShiftOS.Engine')
| -rw-r--r-- | ShiftOS.Engine/ShiftOS.Engine.csproj | 10 | ||||
| -rw-r--r-- | ShiftOS.Engine/UI/ShiftButton.Designer.cs | 37 | ||||
| -rw-r--r-- | ShiftOS.Engine/UI/ShiftButton.cs | 20 |
3 files changed, 64 insertions, 3 deletions
diff --git a/ShiftOS.Engine/ShiftOS.Engine.csproj b/ShiftOS.Engine/ShiftOS.Engine.csproj index 384d356..db21b5a 100644 --- a/ShiftOS.Engine/ShiftOS.Engine.csproj +++ b/ShiftOS.Engine/ShiftOS.Engine.csproj @@ -76,6 +76,12 @@ <Compile Include="ShiftFS\ShiftFS.cs" /> <Compile Include="ShiftFS\IShiftNode.cs" /> <Compile Include="Misc\Tools.cs" /> + <Compile Include="UI\ShiftButton.cs"> + <SubType>UserControl</SubType> + </Compile> + <Compile Include="UI\ShiftButton.Designer.cs"> + <DependentUpon>ShiftButton.cs</DependentUpon> + </Compile> <Compile Include="WindowManager\InfoboxTemplate.cs"> <SubType>UserControl</SubType> </Compile> @@ -1102,8 +1108,6 @@ <ItemGroup> <None Include="Resources\zoombuttonpressed.png" /> </ItemGroup> - <ItemGroup> - <Folder Include="UI\" /> - </ItemGroup> + <ItemGroup /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> </Project>
\ No newline at end of file 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 + { + /// <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 Component 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() + { + 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(); + } + } +} |
