Files
ntfysh-windows/ntfysh_client/AboutBox.cs
2022-12-08 19:30:31 +00:00

19 lines
336 B
C#

using System;
using System.Windows.Forms;
namespace ntfysh_client
{
public partial class AboutBox : Form
{
public AboutBox()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
}
}
}