Files

20 lines
319 B
C#
Raw Permalink Normal View History

2024-09-28 23:55:19 +08:00
using System;
using System.Windows.Forms;
namespace Net462DllTest.View
2024-09-28 23:55:19 +08:00
{
public partial class TestFormView : Form
{
public TestFormView()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
}
}
}