Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/ViewContextMenuStrip.cs @ 3301

Last change on this file since 3301 was 2992, checked in by mkommend, 14 years ago

overloaded GetViewTypes in MainFormManager(ticket #902)

File size: 1.5 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Diagnostics;
5using System.Linq;
6using System.Text;
7using System.Windows.Forms;
8
9namespace HeuristicLab.MainForm.WindowsForms {
10  public sealed partial class ViewContextMenuStrip : ContextMenuStrip {
11    public ViewContextMenuStrip() {
12      InitializeComponent();
13      this.menuItems = new Dictionary<Type, ToolStripMenuItem>();
14    }
15
16    public ViewContextMenuStrip(object item)
17      : this() {
18      this.Item = item;
19    }
20
21    private object item;
22    public object Item {
23      get { return this.item; }
24      set {
25        if (this.item != value) {
26          this.item = value;
27          this.RefreshMenuItems();
28        }
29      }
30    }
31
32    private Dictionary<Type, ToolStripMenuItem> menuItems;
33    public IEnumerable<KeyValuePair<Type, ToolStripMenuItem>> MenuItems {
34      get { return this.menuItems; }
35    }
36
37    private void RefreshMenuItems() {
38      this.Items.Clear();
39      this.menuItems.Clear();
40
41      if (this.item != null) {
42        ToolStripMenuItem menuItem;
43        IEnumerable<Type> types = MainFormManager.GetViewTypes(item.GetType(),true);
44        foreach (Type t in types) {
45          menuItem = new ToolStripMenuItem();
46          menuItem.Tag = t;
47          menuItem.Text = ViewAttribute.GetViewName(t);
48
49          this.menuItems.Add(t, menuItem);
50          this.Items.Add(menuItem);
51        }
52      }
53    }
54  }
55}
Note: See TracBrowser for help on using the repository browser.