Files
easySif/mainProgram/OpenProjectWindow.cs
2021-12-14 18:39:55 +08:00

36 lines
697 B
C#

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 mainProgram
{
public partial class OpenProjectWindow : Form
{
public OpenProjectWindow()
{
InitializeComponent();
}
private void SelectProjectPathBtn_Click(object sender, EventArgs e)
{
}
private void OpenProjectPathBtn_Click(object sender, EventArgs e)
{
}
private void CancelBtn_Click(object sender, EventArgs e)
{
Close();
}
}
}