public MonitoredApplicationTabPage(string name, int tabIndex)
     : base(name, tabIndex)
 {
     this.mListView = new MonitoredApplicationListView(name);
     this.Controls.Add(this.mListView);
 }
 public MonitoredApplicationTabPage(int tabIndex)
     : base(tabIndex)
 {
     this.mListView = new MonitoredApplicationListView();
     this.Controls.Add(this.mListView);
 }