-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathWindowDef.cs
More file actions
38 lines (35 loc) · 1.13 KB
/
Copy pathWindowDef.cs
File metadata and controls
38 lines (35 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SharpQuant.UI.Docking
{
public interface IWindowDef
{
string ClassName { get; set; }
string AssemblyName { get; set; }
string TabText { get; set; }
string ButtonImage { get; set; }
string ButtonText { get; set; }
string ButtonName { get; set; }
string ButtonTooltip { get; set; }
string MenuText { get; set; }
int DockAreas { get; set; }
string Icon { get; set; }
Type ViewType { get; set; }
}
public class WindowDef : IWindowDef
{
public string ClassName { get; set; }
public string AssemblyName { get; set; }
public string TabText { get; set; }
public string ButtonImage { get; set; }
public string ButtonText { get; set; }
public string ButtonName { get; set; }
public string ButtonTooltip { get; set; }
public string MenuText { get; set; }
public int DockAreas { get; set; }
public string Icon { get; set; }
public Type ViewType { get; set; }
}
}