C# Class hoTools.Query.TextBoxUndo

Text Box with UnDo/ReDo functionality by -Function: UndoText() -Function: ReText() -CTRL+Z (undo) (don't works with EA!!) -CTRL+Y (redo) (don't works with EA!!)
Inheritance: System.Windows.Forms.TextBox
ファイルを表示 Open project: Helmut-Ortmann/EnterpriseArchitect_hoTools Class Usage Examples

Public Methods

Method Description
RedoText ( ) : void

Redo last change of TextBobUndo

TextBoxUndo ( TabPage tabPage ) : System

Constructor - Register TextChanged

UndoText ( ) : void

Undo last change of TextBobUndo

Private Methods

Method Description
InitializeComponent ( ) : void

InitializeComponent. Register Event TextChanged

textBoxUndo_TextChanged ( object sender, EventArgs e ) : void

Event TextChanged

text_KeyDown ( object sender, KeyEventArgs e ) : void
text_KeyPress ( object sender, KeyPressEventArgs e ) : void
text_KeyUp ( object sender, KeyEventArgs e ) : void

Handle CTRL sequences for CTRL+Z (Undo) and CTRL+Y (Redo)

Method Details

RedoText() public method

Redo last change of TextBobUndo
public RedoText ( ) : void
return void

TextBoxUndo() public method

Constructor - Register TextChanged
public TextBoxUndo ( TabPage tabPage ) : System
tabPage System.Windows.Forms.TabPage The TabPage
return System

UndoText() public method

Undo last change of TextBobUndo
public UndoText ( ) : void
return void