1
0
mirror of https://github.com/fadden/6502bench.git synced 2025-09-25 21:16:52 +00:00

Rough layout of local variable tables

Create the XAML and some skeletal classes.
This commit is contained in:
Andy McFadden
2019-08-25 14:14:44 -07:00
parent 5dcdbe3f3a
commit 5fe032c93a
9 changed files with 272 additions and 2 deletions

View File

@@ -1685,6 +1685,18 @@ namespace SourceGen {
}
}
public bool CanEditLocalVariableTable() {
return true; // TODO
}
public void EditLocalVariableTable() {
// TODO
EditLocalVariableTable dlg = new EditLocalVariableTable(mMainWin);
if (dlg.ShowDialog() != true) {
return;
}
}
public bool CanEditLongComment() {
if (SelectionAnalysis.mNumItemsSelected != 1) {
return false;