C# 클래스 KFreonLib.GUI.TextUpdater

Provides threadsafe methods to update text of a ToolStripItem's Text property.
파일 보기 프로젝트 열기: ME3Explorer/ME3Explorer 1 사용 예제들

공개 메소드들

메소드 설명
TextUpdater ( Control givenControl ) : System

Constructor using a Control like a TextBox. Unused for now.

TextUpdater ( ToolStripItem givenControl, ToolStrip givenStrip ) : System

Constructor for given ToolStripItem.

UpdateText ( string text ) : void

Updates text of targeted text property.

메소드 상세

TextUpdater() 공개 메소드

Constructor using a Control like a TextBox. Unused for now.
public TextUpdater ( Control givenControl ) : System
givenControl System.Windows.Forms.Control Control to alter.
리턴 System

TextUpdater() 공개 메소드

Constructor for given ToolStripItem.
public TextUpdater ( ToolStripItem givenControl, ToolStrip givenStrip ) : System
givenControl System.Windows.Forms.ToolStripItem Control to monitor.
givenStrip System.Windows.Forms.ToolStrip Base strip to correctly invoke with.
리턴 System

UpdateText() 공개 메소드

Updates text of targeted text property.
public UpdateText ( string text ) : void
text string New text to display.
리턴 void