示例#1
0
 public WindowFrame(DecompilerShellUiService svc, string key, TabPage tabPage, IWindowPane pane)
 {
     this.svc     = svc;
     this.key     = key;
     this.tabPage = tabPage;
     this.pane    = pane;
 }
示例#2
0
 public WindowFrame(DecompilerShellUiService svc, string key, object docItem, TabPage tabPage, IWindowPane pane)
 {
     this.svc          = svc;
     this.key          = key;
     this.DocumentItem = docItem;
     this.tabPage      = tabPage;
     this.pane         = pane;
 }
示例#3
0
 public void Setup()
 {
     mr = new MockRepository();
     form = new Form();
     form.IsMdiContainer = true;
     sc = new ServiceContainer();
     mainForm = new MainForm();
     svc = new DecompilerShellUiService(mainForm, null, null, null, sc);
 }
 public WindowFrame(DecompilerShellUiService svc, string key, object docItem, TabPage tabPage, IWindowPane pane)
 {
     this.svc = svc;
     this.key = key;
     this.DocumentItem = docItem;
     this.tabPage = tabPage;
     this.pane = pane;
 }
 public WindowFrame(DecompilerShellUiService svc, string key, TabPage tabPage, IWindowPane pane)
 {
     this.svc = svc;
     this.key = key;
     this.tabPage = tabPage;
     this.pane = pane;
 }