1
0
mirror of https://github.com/livingcomputermuseum/ContrAlto.git synced 2026-02-14 11:55:08 +00:00
Files
livingcomputermuseum.ContrAlto/Contralto/AboutBox.cs

26 lines
487 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 Contralto
{
public partial class AboutBox : Form
{
public AboutBox()
{
InitializeComponent();
}
private void OkButton_Click(object sender, EventArgs e)
{
this.Close();
}
}
}