This repository has been archived on 2026-08-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-06-11 07:33:13 +08:00

35 lines
737 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 kcsj.Forms
{
public partial class DataInputForm : Form
{
public DataInputForm()
{
InitializeComponent();
}
private void DataFromFiles_Click(object sender, EventArgs e)
{
FileInputForm form = new FileInputForm();
form.ShowDialog();
}
private void button2_Click(object sender, EventArgs e)
{
ManualInputForm form = new ManualInputForm();
form.ShowDialog();
}
}
}