C# Класс BF2Statistics.Notify

Notify is a class that queues and shows Alert "toast" messages to the user, which spawn just above the task bar, in the lower right hand side of the screen
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
DefaultDockTime int

Защищенные свойства (Protected)

Свойство Тип Описание
Alerts Queue

Открытые методы

Метод Описание
Show ( string Message, string SubText, AlertType Type = AlertType.Info ) : void

Shows a custom Toast message with the specified icon

Защищенные методы

Метод Описание
CheckAlerts ( ) : void

This method is called internally to determine if a new alert can be shown from the alert queue.

Приватные методы

Метод Описание
AlertClosed ( object sender, EventArgs e ) : void

Event is fired whenever a Toast alert is closed. This method is responsible for displaying the next queued alert message

Notify ( ) : System

Static Constructor

Описание методов

CheckAlerts() защищенный статический Метод

This method is called internally to determine if a new alert can be shown from the alert queue.
protected static CheckAlerts ( ) : void
Результат void

Show() публичный статический Метод

Shows a custom Toast message with the specified icon
public static Show ( string Message, string SubText, AlertType Type = AlertType.Info ) : void
Message string
SubText string
Type AlertType
Результат void

Описание свойств

Alerts защищенное статическое свойство

A queue of alerts to display. Alerts are added here to prevent too many alerts from showing at once
protected static Queue Alerts
Результат Queue

DefaultDockTime публичное статическое свойство

Gets or Sets the default dock time of an alert, if one is not specified in the ShowAlert method
public static int DefaultDockTime
Результат int