aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Engine/ShiftFS
diff options
context:
space:
mode:
authorFloppyDiskDrive <[email protected]>2017-11-21 16:12:15 -0600
committerFloppyDiskDrive <[email protected]>2017-11-21 16:12:15 -0600
commit2950e4546a0aad1036a7e655c41d170e6dd7ef12 (patch)
tree70b4ecb1b0b7e364749217ca25195b396d0d2f1a /ShiftOS.Engine/ShiftFS
parent4534ff6252d2cd442d2180b024a94db1f4379f41 (diff)
downloadshiftos-rewind-2950e4546a0aad1036a7e655c41d170e6dd7ef12.tar.gz
shiftos-rewind-2950e4546a0aad1036a7e655c41d170e6dd7ef12.tar.bz2
shiftos-rewind-2950e4546a0aad1036a7e655c41d170e6dd7ef12.zip
updated the TerminalBackend.cs file lel
Diffstat (limited to 'ShiftOS.Engine/ShiftFS')
-rw-r--r--ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.Designer.cs13
-rw-r--r--ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.cs4
2 files changed, 13 insertions, 4 deletions
diff --git a/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.Designer.cs b/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.Designer.cs
index 7eca5d3..bb7c655 100644
--- a/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.Designer.cs
+++ b/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.Designer.cs
@@ -28,21 +28,30 @@
/// </summary>
private void InitializeComponent()
{
-
+ this.shiftButton1 = new ShiftOS.Engine.UI.ShiftButton();
this.SuspendLayout();
//
+ // 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
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.shiftButton1);
this.Name = "FileOpener";
this.Size = new System.Drawing.Size(368, 283);
this.ResumeLayout(false);
}
+
#endregion
-
+ private UI.ShiftButton shiftButton1;
}
}
diff --git a/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.cs b/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.cs
index 1947f6f..4c45b18 100644
--- a/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.cs
+++ b/ShiftOS.Engine/ShiftFS/FileGUI/FileOpener.cs
@@ -7,6 +7,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
+using ShiftOS.Engine.WindowManager;
namespace ShiftOS.Engine.ShiftFS.FileGUI
{
@@ -15,12 +16,11 @@ namespace ShiftOS.Engine.ShiftFS.FileGUI
public FileOpener()
{
InitializeComponent();
-
}
private void shiftButton1_Click(object sender, EventArgs e)
{
- MessageBox.Show("yay");
+ ShiftWM.StartInfoboxSession("Test", "lol", InfoboxTemplate.ButtonType.Ok);
}
}
}