removing sequences works

This commit is contained in:
Chris Forbes
2009-10-28 22:15:08 +13:00
parent 8a571c4bab
commit 3bd46a4dcb
9 changed files with 415 additions and 14 deletions

View File

@@ -17,5 +17,12 @@ namespace SequenceEditor
InitializeComponent();
Text += " - " + Program.UnitName;
}
void toolStripButton1_Click(object sender, EventArgs e)
{
var shp = GetTextForm.GetString( "Add SHP..." );
if (shp == null) return;
Program.Shps.Add(shp, Program.LoadAndResolve(shp));
}
}
}