Last change
on this file since 3075 was
3072,
checked in by gkronber, 15 years ago
|
Copied projects related to the deployment service from the feature branch. #918 (Integrate deployment service into trunk and HL3.3 solution file)
|
File size:
690 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.MainForm;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.DeploymentService.AdminClient {
|
---|
8 | class OpenServerProductsEditorMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IUserInterfaceItemProvider {
|
---|
9 | public override string Name {
|
---|
10 | get { return "Edit Products"; }
|
---|
11 | }
|
---|
12 |
|
---|
13 | public override IEnumerable<string> Structure {
|
---|
14 | get { return new string[] { "Plugin Server" }; }
|
---|
15 | }
|
---|
16 |
|
---|
17 | public override int Position {
|
---|
18 | get { return 1300; }
|
---|
19 | }
|
---|
20 |
|
---|
21 | public override void Execute() {
|
---|
22 | OpenProductEditorAction.Execute(MainFormManager.MainForm);
|
---|
23 | }
|
---|
24 | }
|
---|
25 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.