This commit is contained in:
FloppyDiskDrive 2017-11-21 16:27:51 -06:00
parent 8ec044f8c9
commit b0cdadf275
2 changed files with 1 additions and 9 deletions

View file

@ -28,21 +28,15 @@
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
this.shiftButton1 = new ShiftOS.Engine.UI.ShiftButton();
this.SuspendLayout(); this.SuspendLayout();
// //
// shiftButton1 // shiftButton1
// //
this.shiftButton1.Location = new System.Drawing.Point(133, 66);
this.shiftButton1.Name = "shiftButton1";
this.shiftButton1.Size = new System.Drawing.Size(75, 22);
this.shiftButton1.TabIndex = 0;
// //
// FileOpener // FileOpener
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.shiftButton1);
this.Name = "FileOpener"; this.Name = "FileOpener";
this.Size = new System.Drawing.Size(368, 283); this.Size = new System.Drawing.Size(368, 283);
this.ResumeLayout(false); this.ResumeLayout(false);
@ -52,6 +46,5 @@
#endregion #endregion
private UI.ShiftButton shiftButton1;
} }
} }

View file

@ -4,7 +4,6 @@ using System.IO;
using System.Media; using System.Media;
using System.Windows.Forms; using System.Windows.Forms;
using ShiftOS.Engine.Properties; using ShiftOS.Engine.Properties;
using ShiftOS.Engine.UI;
namespace ShiftOS.Engine.WindowManager namespace ShiftOS.Engine.WindowManager
{ {