From 4534ff6252d2cd442d2180b024a94db1f4379f41 Mon Sep 17 00:00:00 2001 From: FloppyDiskDrive Date: Sun, 19 Nov 2017 10:21:34 -0600 Subject: Added new extremely buggy ShiftButton. --- .../ShiftFS/FileGUI/FileOpener.Designer.cs | 48 +++++++++ ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.cs | 26 +++++ ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.resx | 120 +++++++++++++++++++++ 3 files changed, 194 insertions(+) create mode 100644 ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.Designer.cs create mode 100644 ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.cs create mode 100644 ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.resx (limited to 'ShiftOS.Engine/ShiftFS') diff --git a/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.Designer.cs b/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.Designer.cs new file mode 100644 index 0000000..7eca5d3 --- /dev/null +++ b/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.Designer.cs @@ -0,0 +1,48 @@ +namespace ShiftOS.Engine.ShiftFS.FileGUI +{ + partial class FileOpener + { + /// + /// 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(); + // + // FileOpener + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Name = "FileOpener"; + this.Size = new System.Drawing.Size(368, 283); + this.ResumeLayout(false); + + } + + #endregion + + + } +} diff --git a/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.cs b/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.cs new file mode 100644 index 0000000..1947f6f --- /dev/null +++ b/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.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 ShiftOS.Engine.ShiftFS.FileGUI +{ + public partial class FileOpener : UserControl + { + public FileOpener() + { + InitializeComponent(); + + } + + private void shiftButton1_Click(object sender, EventArgs e) + { + MessageBox.Show("yay"); + } + } +} diff --git a/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.resx b/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.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 -- cgit v1.2.3