Parę nowych dodatków:
* Opóżnienie pojawienia
* Pokaż po wciśnięciu ikony na pasku powiadomień
This commit is contained in:
Christopher
2021-01-27 23:45:52 +01:00
parent dafe8b4e3c
commit 6dd8d50aa0
25 changed files with 2904 additions and 35 deletions
+36
View File
@@ -22,5 +22,41 @@ namespace ErrorGenerator.Properties {
return defaultInstance;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string Ikona {
get {
return ((string)(this["Ikona"]));
}
set {
this["Ikona"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Pokaż sztuczny błąd")]
public string TytulIkony {
get {
return ((string)(this["TytulIkony"]));
}
set {
this["TytulIkony"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("0")]
public int Klikniecie {
get {
return ((int)(this["Klikniecie"]));
}
set {
this["Klikniecie"] = value;
}
}
}
}
+14 -6
View File
@@ -1,7 +1,15 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="ErrorGenerator.Properties" GeneratedClassName="Settings">
<Profiles />
<Settings>
<Setting Name="Ikona" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="TytulIkony" Type="System.String" Scope="User">
<Value Profile="(Default)">Pokaż sztuczny błąd</Value>
</Setting>
<Setting Name="Klikniecie" Type="System.Int32" Scope="User">
<Value Profile="(Default)">0</Value>
</Setting>
</Settings>
</SettingsFile>