C# 클래스 Hourglass.Windows.ErrorDialog

A window that displays an error.
파일 보기 프로젝트 열기: Dziemborowicz/Hourglass 1 사용 예제들

공개 메소드들

메소드 설명
ErrorDialog ( ) : System.Windows

Initializes a new instance of the ErrorDialog class.

ShowDialog ( string title, string message = null, string details = null ) : void

Opens the window and returns only when the window is closed.

비공개 메소드들

메소드 설명
InitializeMaxSize ( ) : void

Initializes the Window.MaxWidth and Window.MaxHeight properties.

InitializeResources ( ) : void

Initializes localized resources.

ShowDetailsButtonClick ( object sender, RoutedEventArgs e ) : void

Invoked when the ShowDetailsButton is clicked.

메소드 상세

ErrorDialog() 공개 메소드

Initializes a new instance of the ErrorDialog class.
public ErrorDialog ( ) : System.Windows
리턴 System.Windows

ShowDialog() 공개 메소드

Opens the window and returns only when the window is closed.
public ShowDialog ( string title, string message = null, string details = null ) : void
title string The title for the error dialog..
message string The error message to show. (Optional.)
details string Details of the error, such as a call stack. (Optional.)
리턴 void