Change icon for error, Add option to disable message

This commit is contained in:
Samir L. Boulema 2015-12-16 17:18:16 +01:00
parent 610f82311d
commit ce880f40ce
3 changed files with 24 additions and 6 deletions

View file

@ -37,6 +37,10 @@ namespace VitaliiGanzha.VsDingExtension
[Description("Show tray notifications for enabled events")]
public bool ShowTrayNotifications { get; set; }
[DisplayName("Tray notifications message")]
[Description("Show message how to disable tray notifications")]
public bool ShowTrayDisableMessage { get; set; }
public OptionsDialog()
{
IsBeepOnBreakpointHit = true;
@ -45,6 +49,7 @@ namespace VitaliiGanzha.VsDingExtension
IsBeepOnTestFailed = false;
ShowTrayNotifications = true;
IsBeepOnlyWhenVisualStudioIsInBackground = false;
ShowTrayDisableMessage = true;
}
}
}