nHydrate.Generator.Models.TableComponentCollectionController.GetMenuCommands C# (CSharp) Méthode

GetMenuCommands() public méthode

public GetMenuCommands ( ) : MenuCommand[]
Résultat MenuCommand[]
		public override MenuCommand[] GetMenuCommands()
		{
			var mcAddComponent = new DefaultMenuCommand();
			mcAddComponent.Text = "New Component";
			mcAddComponent.Click += new EventHandler(AddTableMenuClick);

			return new MenuCommand[] { mcAddComponent };
		}