From 982c575f9adaf4c12ef3911033d44e0e78d138f8 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 8 Feb 2017 08:46:26 -0500 Subject: [PATCH] More icons. --- ShiftOS.WinForms/Applications/ColorPicker.cs | 2 +- ShiftOS.WinForms/Applications/Dialog.cs | 1 + ShiftOS.WinForms/Applications/Downloader.cs | 1 + ShiftOS.WinForms/Applications/FileDialog.cs | 1 + ShiftOS.WinForms/Applications/FileSkimmer.cs | 1 + ShiftOS.WinForms/Applications/GraphicPicker.cs | 2 +- ShiftOS.WinForms/Applications/NameChanger.cs | 1 + 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 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 /// /// [DefaultTitle("Choose file")] + [DefaultIcon("iconFileSkimmer")] public partial class FileDialog : UserControl, IShiftOSWindow { public FileDialog(string[] filetypes, FileOpenerStyle style, Action _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 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()