Last change
on this file since 2678 was
2541,
checked in by mkommend, 15 years ago
|
adapted MainForm to fire an initialized event and renamed the event in ViewBase to Initialized (ticket #771)
|
File size:
1.1 KB
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.MainForm {
|
---|
7 | public abstract class MenuSeparatorItemBase : IMenuSeparatorItem {
|
---|
8 | public abstract IEnumerable<string> Structure { get; }
|
---|
9 | public abstract int Position { get; }
|
---|
10 |
|
---|
11 |
|
---|
12 | public string Name {
|
---|
13 | get { return string.Empty; }
|
---|
14 | }
|
---|
15 |
|
---|
16 | public System.Drawing.Image Image {
|
---|
17 | get { return null; }
|
---|
18 | }
|
---|
19 |
|
---|
20 | public string ToolTipText {
|
---|
21 | get { return string.Empty; }
|
---|
22 | }
|
---|
23 |
|
---|
24 | public void Execute() {
|
---|
25 | throw new NotImplementedException();
|
---|
26 | }
|
---|
27 |
|
---|
28 | public void ActiveViewChanged(object sender, EventArgs e) {
|
---|
29 | throw new NotImplementedException();
|
---|
30 | }
|
---|
31 |
|
---|
32 | public void ViewChanged(object sender, EventArgs e) {
|
---|
33 | throw new NotImplementedException();
|
---|
34 | }
|
---|
35 |
|
---|
36 | public void MainFormChanged(object sender, EventArgs e) {
|
---|
37 | throw new NotImplementedException();
|
---|
38 | }
|
---|
39 |
|
---|
40 | public void MainFormInitialized(object sender, EventArgs e) {
|
---|
41 | throw new NotImplementedException();
|
---|
42 | }
|
---|
43 | }
|
---|
44 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.