C# 클래스 NanoByte.Common.Controls.LiveEditor

파일 보기 프로젝트 열기: nano-byte/common

공개 메소드들

메소드 설명
ClearUndoStack ( ) : void

Clears the undo stack of the underlying text editor control.

LiveEditor ( ) : System
Redo ( ) : void

Executes the redo method of the underlying text editor control.

SetContent ( string text, string format ) : void

Sets a new text to be edited.

Undo ( ) : void

Executes the undo method of the underlying text editor control.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

Clean up any resources being used.

비공개 메소드들

메소드 설명
HandleError ( Exception ex ) : void
InitializeComponent ( ) : void

Required method for Designer support - do not modify the contents of this method with the code editor.

SetStatus ( Image image, string message ) : void
TextEditor_TextChanged ( object sender, EventArgs e ) : void
TextEditor_Validating ( object sender, CancelEventArgs e ) : void
ValidateContent ( ) : void
timer_Tick ( object sender, EventArgs e ) : void

메소드 상세

ClearUndoStack() 공개 메소드

Clears the undo stack of the underlying text editor control.
public ClearUndoStack ( ) : void
리턴 void

Dispose() 보호된 메소드

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
리턴 void

LiveEditor() 공개 메소드

public LiveEditor ( ) : System
리턴 System

Redo() 공개 메소드

Executes the redo method of the underlying text editor control.
public Redo ( ) : void
리턴 void

SetContent() 공개 메소드

Sets a new text to be edited.
public SetContent ( string text, string format ) : void
text string The text to set.
format string The format named used to determine the highlighting scheme (e.g. XML).
리턴 void

Undo() 공개 메소드

Executes the undo method of the underlying text editor control.
public Undo ( ) : void
리턴 void