Example #1
0
 public void ShowCollectorDetails(ICollector collector)
 {
     base.Show();
     PFConfig = null;
     PFConfig = ((PerfCounter)collector).PerfCounterConfig;
     LoadList();
     RefreshList();
     lvwPerfCounters_Resize(null, null);
 }
Example #2
0
 public void RefreshConfig(ICollector collector)
 {
     PFConfig = null;
     PFConfig = ((PerfCounter)collector).PerfCounterConfig;
     LoadList();
     RefreshList();
     if (this.WindowState == FormWindowState.Minimized)
     {
         this.WindowState = FormWindowState.Normal;
     }
     this.Show();
 }
Example #3
0
 public ShowDetails()
 {
     InitializeComponent();
     PFConfig = new PerfCounterConfig();
 }
Example #4
0
 public EditConfig()
 {
     InitializeComponent();
     PFConfig = new PerfCounterConfig();
 }