Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
150 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 ...
3
votes
2answers
109 views

Implements undoable command - Java

I'm currently programming a little text editor (project for school) and I'm having some troubles finding a good and clean way to manage the undoable commands. (It is not a code review question as ...
3
votes
2answers
846 views

Memento in Javascript

I'm looking for a JavaScript implementation of the memento pattern (GoF) to be used in CRUD forms. In its basic level it will be enough to undo changes on inputs, but it would be great to use it with ...
3
votes
4answers
399 views

Memento implementation on .NET

I've seen two different implementation of memento on .NET. One is pretty straightforward - The object creates another instance of itself. The other is serializing the object using BinaryFormatter ...
3
votes
2answers
987 views

Storing the state of a complex object with Memento pattern (and Command)

I'm working on a small UML editor project, in Java, that I started a couple of months ago. After a few weeks, I got a working copy for a UML class diagram editor. But now, I'm redesigning it ...
1
vote
1answer
232 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
231 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 ...
0
votes
1answer
91 views

I need a design pattern to provide undo functionality to my program

I've used Memento, I need another for my coursework :)
0
votes
3answers
112 views

How to create default instances of the memento in a Memento Pattern?

I use the Memento Pattern to save properties of a multi-instance form, where n forms are created by user inside a parent form. The purpose of the memento is to regain the same number of forms, and ...