ShiftOS-TheRevival-Old/ShiftOS-TheRevival-CS/Form1.cs

26 lines
499 B
C#
Raw Normal View History

2022-11-07 07:22:01 +07:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ShiftOS_TheRevival_CS
{
2022-11-07 07:34:10 +07:00
public partial class ShiftOSMenu : Form
2022-11-07 07:22:01 +07:00
{
2022-11-07 07:34:10 +07:00
public ShiftOSMenu()
2022-11-07 07:22:01 +07:00
{
InitializeComponent();
}
2022-11-07 07:34:10 +07:00
private void button1_Click(object sender, EventArgs e)
{
Close();
}
2022-11-07 07:22:01 +07:00
}
}