00001 using System;
00002 using System.Collections.Generic;
00003 using System.ComponentModel;
00004 using System.Data;
00005 using System.Drawing;
00006 using System.Text;
00007 using System.Windows.Forms;
00008
00009 namespace Editor
00010 {
00011 public partial class NewAreaDialog : Form
00012 {
00013 public NewAreaDialog()
00014 {
00015 InitializeComponent();
00016 }
00017
00018 private void NewAreaDialog_Load(object sender, EventArgs e)
00019 {
00020
00021 }
00022
00023 private void button1_Click(object sender, EventArgs e)
00024 {
00025 DialogResult = DialogResult.OK;
00026 }
00027
00028 private void button2_Click(object sender, EventArgs e)
00029 {
00030 DialogResult = DialogResult.Cancel;
00031 }
00032 }
00033 }