Lucene.Net.LukeNet.OverviewTabPage.SetOverviewContextMenuItems C# (CSharp) Method

SetOverviewContextMenuItems() private method

private SetOverviewContextMenuItems ( ) : void
return void
        private void SetOverviewContextMenuItems()
        {
            contextMenu.MenuItems.Clear();

            contextMenuItemBrowse = new MenuItem(_luke.resources.GetString("MenuBrowse"));
            contextMenuItemBrowse.Click += new EventHandler(contextMenuItemBrowse_Click);
            contextMenu.MenuItems.Add(contextMenuItemBrowse);

            contextMenuItemShowAll = new MenuItem(_luke.resources.GetString("MenuShowAll"));
            contextMenuItemShowAll.Click += new EventHandler(contextMenuItemShowAll_Click);
            contextMenu.MenuItems.Add(contextMenuItemShowAll);
        }