pascalabcnet/Utils/NodesGeneratorNew/AboutBox.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

25 lines
457 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.Windows.Forms;
namespace NodesGenerator
{
public partial class AboutBox : Form
{
public AboutBox()
{
InitializeComponent();
}
private void buttonOK_Click(object sender, EventArgs e)
{
Close();
}
}
}