Skip to content

NOTE

class

Class NameRemarks
GrowlInfo
ImageCodecInfoInternal
MessageBoxInfo
SystemVersionInfo

NOTE

Growl message initialization model

Member NameTypeDescriptionDefault
MessagestringNotification content-
ShowDateTimeboolWhether to show notification timetrue
ShowPersianDateTimeboolWhether to show notification persian date time (Only available in Custom Version)false
FlowDirectionFlowDirection(Only available in Custom Version)LeftToRight
TimeintWaiting for automatic shutdown time6
CancelStrstringCancel StringLang.Cancel
ConfirmStrstringConfirm StringLang.Confirm
ActionBeforeCloseFunc<bool, bool>Delegate before closing-
StaysOpenboolKeep openfalse
IsCustomboolWhether to customize behaviorfalse
TypeInfoTypeMessage TypeInfoType.Success
IconstringIcon key name-
IconBrushstringIcon Paint Key Name-
ShowCloseButtonboolWhether to show the close buttontrue
TokenstringMessage tag-
GrowlParentboolset Growl Panelfalse

FAQ

NOTE

What should I fill in Icon and IconBrush here?

Icon must fill in the Key name of the resource type Geometry, for example, the following resource, its Key name GitterGeometry can be used as Icon:

<Geometry x:Key="GitterGeometry">M260.8 645H160V0h100.8v645zM461.8 152.2h-100.8V1024h100.8V152.2z m201.2 0h-100.8V1024h100.8V152.2zM864 152h-100.8v494H864V152z</Geometry>

IconBrushKey must be filled with the Key name of the resource type Brush, such as the following resource, its Key name ToolBarBackground can be used as IconBrushKey:

<LinearGradientBrush x:Key="ToolBarBackground" EndPoint="0.5,1" StartPoint="0.5,0">
    <GradientStop Color="#F5F4F5" Offset="0"/>
    <GradientStop Color="#D1CFD1" Offset="1"/>
</LinearGradientBrush>

Released under the MIT License.