diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2019-04-11 16:07:21 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2019-04-11 16:07:21 +0300 |
| commit | b41347f1528e5e34d8c8c8ef2c5b6b63876098f1 (patch) | |
| tree | 79f83df85407f02bad7b025030c7c79a3aca1439 /Software/Visual_Studio/Scripting/Tango.Scripting.IDE/Project.cs | |
| parent | 50672cf57739bac3c0ddefcd40563d0fbed3db80 (diff) | |
| download | Tango-b41347f1528e5e34d8c8c8ef2c5b6b63876098f1.tar.gz Tango-b41347f1528e5e34d8c8c8ef2c5b6b63876098f1.zip | |
added icons to menu, solution for setting icons dynamically to context menu
Diffstat (limited to 'Software/Visual_Studio/Scripting/Tango.Scripting.IDE/Project.cs')
| -rw-r--r-- | Software/Visual_Studio/Scripting/Tango.Scripting.IDE/Project.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Software/Visual_Studio/Scripting/Tango.Scripting.IDE/Project.cs b/Software/Visual_Studio/Scripting/Tango.Scripting.IDE/Project.cs index 9ba1ed902..6392ddcb7 100644 --- a/Software/Visual_Studio/Scripting/Tango.Scripting.IDE/Project.cs +++ b/Software/Visual_Studio/Scripting/Tango.Scripting.IDE/Project.cs @@ -38,10 +38,10 @@ namespace Tango.Scripting.IDE Commands = new ObservableCollection<ISolutionItemCommand> { new SolutionItemCommand(BuildProject) { Name = "Build", Image= GetImage(@"Images/BuildSolution_16x.png") }, - new SolutionItemCommand(SetStartUpProject) { Name = "Set as StartUp Project" }, - new SolutionItemCommand(Remove) { Name = "Remove" }, - new SolutionItemCommand(Rename) { Name = "Rename" }, - new SolutionItemCommand(OpenFolderInFileExplorer) { Name = "Open Folder In File Explorer" }, + new SolutionItemCommand(SetStartUpProject) { Name = "Set as StartUp Project" , Image= GetImage(@"Images/Settings_Inverse_16x.png")}, + new SolutionItemCommand(Remove) { Name = "Remove" , Image= GetImage(@"Images/deletered_16.png")}, + new SolutionItemCommand(Rename) { Name = "Rename", Image= GetImage(@"Images/Rename_16x.png") }, + new SolutionItemCommand(OpenFolderInFileExplorer) { Name = "Open Folder In File Explorer", Image= GetImage(@"Images/Open_16x.png") }, new SolutionItemCommand() { Name = "Add...", |
