aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival-CS/Form1.cs
diff options
context:
space:
mode:
authorEverythingWindows <[email protected]>2022-11-07 07:34:10 +0700
committerEverythingWindows <[email protected]>2022-11-07 07:34:10 +0700
commit5cf25f1409d40f7de6b13baf8b76751ae7b664ed (patch)
tree7ad0eb091858dbdc7418104cc8231697075a93f1 /ShiftOS-TheRevival-CS/Form1.cs
parent8dc0fd274fa042f0e69d6763ee79ed3f79bb7b14 (diff)
downloadshiftos-therevival-old-5cf25f1409d40f7de6b13baf8b76751ae7b664ed.tar.gz
shiftos-therevival-old-5cf25f1409d40f7de6b13baf8b76751ae7b664ed.tar.bz2
shiftos-therevival-old-5cf25f1409d40f7de6b13baf8b76751ae7b664ed.zip
tracing C# code to adapt to VB.NET
Diffstat (limited to 'ShiftOS-TheRevival-CS/Form1.cs')
-rw-r--r--ShiftOS-TheRevival-CS/Form1.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/ShiftOS-TheRevival-CS/Form1.cs b/ShiftOS-TheRevival-CS/Form1.cs
index a9f323d..0a1d2f3 100644
--- a/ShiftOS-TheRevival-CS/Form1.cs
+++ b/ShiftOS-TheRevival-CS/Form1.cs
@@ -10,11 +10,16 @@ using System.Windows.Forms;
namespace ShiftOS_TheRevival_CS
{
- public partial class Form1 : Form
+ public partial class ShiftOSMenu : Form
{
- public Form1()
+ public ShiftOSMenu()
{
InitializeComponent();
}
+
+ private void button1_Click(object sender, EventArgs e)
+ {
+ Close();
+ }
}
}