RosTE/GUI/AboutForm.cs
Ged Murphy 6d1e94a0c6 start of a new GUI for the ROS Test Environment
svn path=/trunk/tools/RosTE/; revision=182
2007-05-15 19:09:52 +00:00

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();
}
}
}