C# 클래스 ACAT.Lib.Core.PanelManagement.TimedMessageBox

Form for a message box with an OK button. Uses a timer and when the timer expires, automatically closes the box. Useful for error messages or informational messages
상속: System.Windows.Forms.Form
파일 보기 프로젝트 열기: brlima94/acat-localization 1 사용 예제들

공개 메소드들

메소드 설명
Show ( String message ) : void

Shows the message box

비공개 메소드들

메소드 설명
TimedMessageBox ( String message ) : System

Initializes a new instance of the class.

TimedMessageBox_Load ( object sender, EventArgs e ) : void

Performs initialization

buttonCopyClipboard_Click ( object sender, EventArgs e ) : void

Copy the message to clipboard

buttonOK_Click ( object sender, EventArgs e ) : void

User clicked on the OK button. Close the form

labelMessage_Click ( object sender, EventArgs e ) : void
timer_Tick ( object sender, EventArgs e ) : void

Timer tick event. Updates form

updateTimerMessage ( ) : void

Updates info on the form

메소드 상세

Show() 공개 정적인 메소드

Shows the message box
public static Show ( String message ) : void
message String
리턴 void