aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.WinForms/Applications')
-rw-r--r--ShiftOS.WinForms/Applications/ColorPicker.cs2
-rw-r--r--ShiftOS.WinForms/Applications/Dialog.cs1
-rw-r--r--ShiftOS.WinForms/Applications/Downloader.cs1
-rw-r--r--ShiftOS.WinForms/Applications/FileDialog.cs1
-rw-r--r--ShiftOS.WinForms/Applications/FileSkimmer.cs1
-rw-r--r--ShiftOS.WinForms/Applications/GraphicPicker.cs2
-rw-r--r--ShiftOS.WinForms/Applications/NameChanger.cs1
7 files changed, 7 insertions, 2 deletions
diff --git a/ShiftOS.WinForms/Applications/ColorPicker.cs b/ShiftOS.WinForms/Applications/ColorPicker.cs
index da3c952..04ff23e 100644
--- a/ShiftOS.WinForms/Applications/ColorPicker.cs
+++ b/ShiftOS.WinForms/Applications/ColorPicker.cs
@@ -37,7 +37,7 @@ using API = ShiftOS.WinForms.Tools.ColorPickerDataBackend;
namespace ShiftOS.WinForms.Applications
{
- [DefaultTitle("Choose color")]
+ [DefaultTitle("Choose color")] [DefaultIcon("iconColourPicker")]
public partial class ColorPicker : UserControl, IShiftOSWindow
{
public ColorPicker(Color oldcol, string ctc, Action<Color> callback)
diff --git a/ShiftOS.WinForms/Applications/Dialog.cs b/ShiftOS.WinForms/Applications/Dialog.cs
index 8137816..26e3040 100644
--- a/ShiftOS.WinForms/Applications/Dialog.cs
+++ b/ShiftOS.WinForms/Applications/Dialog.cs
@@ -36,6 +36,7 @@ using ShiftOS.Engine;
namespace ShiftOS.WinForms.Applications
{
[DefaultTitle("Information")]
+ [DefaultIcon("iconInfoBox")]
public partial class Dialog : UserControl, IShiftOSWindow, IInfobox
{
public Dialog()
diff --git a/ShiftOS.WinForms/Applications/Downloader.cs b/ShiftOS.WinForms/Applications/Downloader.cs
index 1968660..dfa2425 100644
--- a/ShiftOS.WinForms/Applications/Downloader.cs
+++ b/ShiftOS.WinForms/Applications/Downloader.cs
@@ -16,6 +16,7 @@ using ShiftOS.WinForms.Tools;
namespace ShiftOS.WinForms.Applications
{
[Launcher("Downloader", false, null, "Networking")]
+ [DefaultIcon("iconDownloader")]
public partial class Downloader : UserControl, IShiftOSWindow
{
public Downloader()
diff --git a/ShiftOS.WinForms/Applications/FileDialog.cs b/ShiftOS.WinForms/Applications/FileDialog.cs
index 1b596b7..308be7d 100644
--- a/ShiftOS.WinForms/Applications/FileDialog.cs
+++ b/ShiftOS.WinForms/Applications/FileDialog.cs
@@ -42,6 +42,7 @@ namespace ShiftOS.WinForms.Applications
///
/// </summary>
[DefaultTitle("Choose file")]
+ [DefaultIcon("iconFileSkimmer")]
public partial class FileDialog : UserControl, IShiftOSWindow
{
public FileDialog(string[] filetypes, FileOpenerStyle style, Action<string> _callback)
diff --git a/ShiftOS.WinForms/Applications/FileSkimmer.cs b/ShiftOS.WinForms/Applications/FileSkimmer.cs
index 6e0adfe..ec8fd00 100644
--- a/ShiftOS.WinForms/Applications/FileSkimmer.cs
+++ b/ShiftOS.WinForms/Applications/FileSkimmer.cs
@@ -43,6 +43,7 @@ namespace ShiftOS.WinForms.Applications
[RequiresUpgrade("file_skimmer")]
[WinOpen("file_skimmer")]
[DefaultTitle("File Skimmer")]
+ [DefaultIcon("iconFileSkimmer")]
public partial class FileSkimmer : UserControl, IShiftOSWindow
{
public FileSkimmer()
diff --git a/ShiftOS.WinForms/Applications/GraphicPicker.cs b/ShiftOS.WinForms/Applications/GraphicPicker.cs
index 3799546..2dfe7ec 100644
--- a/ShiftOS.WinForms/Applications/GraphicPicker.cs
+++ b/ShiftOS.WinForms/Applications/GraphicPicker.cs
@@ -37,7 +37,7 @@ using ShiftOS.WinForms.Tools;
namespace ShiftOS.WinForms.Applications
{
- [DefaultTitle("Choose graphic")]
+ [DefaultTitle("Choose graphic")] [DefaultIcon("icongraphicpicker")]
public partial class GraphicPicker : UserControl, IShiftOSWindow
{
public GraphicPicker(Image old, string name, ImageLayout layout, Action<byte[], Image, ImageLayout> cb)
diff --git a/ShiftOS.WinForms/Applications/NameChanger.cs b/ShiftOS.WinForms/Applications/NameChanger.cs
index d78c329..ca76e57 100644
--- a/ShiftOS.WinForms/Applications/NameChanger.cs
+++ b/ShiftOS.WinForms/Applications/NameChanger.cs
@@ -42,6 +42,7 @@ namespace ShiftOS.WinForms.Applications {
[RequiresUpgrade("name_changer")]
[WinOpen("name_changer")]
[DefaultTitle("Name Changer")]
+ [DefaultIcon("iconNameChanger")]
public partial class NameChanger : UserControl, IShiftOSWindow
{
public NameChanger()