Tagged Questions
6
votes
3answers
9k views
C#: How to implement good and efficient undo/redo functionality for a TextBox
I have a TextBox which I would like to implement undo/redo functionality for. I have read that it might have some slight undo functionality already, but that it is buggy? Anyways, I would like to ...
4
votes
3answers
184 views
State Pattern C# with previous states
I am new to the state pattern implementation in C#, could you provide some info on how you implement it.
I am refactoring a state machine in C# using the state pattern. Currently my state machine ...
1
vote
1answer
252 views
WPF : Disable Undo in an editable ComboBox
I have implemented an undo system based on the Memento pattern. I disable the built in Undo on TextBox and was wondering how to do this on a ComboBox. The Combobox I have is editable, so it contains a ...
1
vote
3answers
240 views
Comparing two object state,before and after update
first things first.
I have the following classes:
class Employee
{
private int employeeID;
private string firstName;
private string lastName;
private bool eligibleOT;
private int ...