diff options
| author | Michael <[email protected]> | 2017-02-08 08:46:26 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-08 08:46:33 -0500 |
| commit | 982c575f9adaf4c12ef3911033d44e0e78d138f8 (patch) | |
| tree | 361cd1e2e3e639c4e6ba26a8abf82d655480f9ac /ShiftOS.WinForms | |
| parent | a2219a0441a745dad254e0b1dec7210b35a18601 (diff) | |
| download | shiftos_thereturn-982c575f9adaf4c12ef3911033d44e0e78d138f8.tar.gz shiftos_thereturn-982c575f9adaf4c12ef3911033d44e0e78d138f8.tar.bz2 shiftos_thereturn-982c575f9adaf4c12ef3911033d44e0e78d138f8.zip | |
More icons.
Diffstat (limited to 'ShiftOS.WinForms')
| -rw-r--r-- | ShiftOS.WinForms/Applications/ColorPicker.cs | 2 | ||||
| -rw-r--r-- | ShiftOS.WinForms/Applications/Dialog.cs | 1 | ||||
| -rw-r--r-- | ShiftOS.WinForms/Applications/Downloader.cs | 1 | ||||
| -rw-r--r-- | ShiftOS.WinForms/Applications/FileDialog.cs | 1 | ||||
| -rw-r--r-- | ShiftOS.WinForms/Applications/FileSkimmer.cs | 1 | ||||
| -rw-r--r-- | ShiftOS.WinForms/Applications/GraphicPicker.cs | 2 | ||||
| -rw-r--r-- | 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<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() |
