Added Edit Transaction

This commit is contained in:
Andre Beging
2017-09-12 00:36:50 +02:00
parent 7b6db9fe96
commit 09a09d4af4
8 changed files with 411 additions and 1 deletions

View File

@@ -27,6 +27,8 @@ namespace DebtMgr.View.Dialogs
DataContext = App.Locator.AddTransactionView;
}
#region TextBox_OnKeyUp()
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary> Event handler. Called by TextBox for on key up events. </summary>
///
@@ -41,6 +43,9 @@ namespace DebtMgr.View.Dialogs
App.Locator.AddTransactionView.AddTransactionButtonClickCommand.Execute(null);
}
#endregion
#region Window_OnKeyUp()
////////////////////////////////////////////////////////////////////////////////////////////////////
/// <summary> Event handler. Called by Window for on key up events. </summary>
///
@@ -54,5 +59,7 @@ namespace DebtMgr.View.Dialogs
if (e.Key.Equals(Key.Escape))
Close();
}
#endregion
}
}