mirror of
https://github.com/reactos/RosTE.git
synced 2024-11-26 21:00:31 +00:00
6d1e94a0c6
svn path=/trunk/tools/RosTE/; revision=182
23 lines
451 B
C#
23 lines
451 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace RosTEGUI
|
|
{
|
|
public partial class AboutForm : Form
|
|
{
|
|
public AboutForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
{
|
|
Close();
|
|
}
|
|
}
|
|
} |