31 |
|
|
32 |
|
|
33 |
public new void Show() { this.Show(null); } |
public new void Show() { this.Show(null); } |
34 |
public new void Show(IWin32Window owner) { this.PreInitShow(owner); } |
//public new void Show(IWin32Window owner) { this.PreInitShow(owner); } |
35 |
public new DialogResult ShowDialog() { return this.ShowDialog(null); } |
public new void Show(DockPanel panel) { this.PreInitShow(panel); } |
36 |
public new DialogResult ShowDialog(IWin32Window owner) { return this.PreInitDialog(owner); } |
//public new DialogResult ShowDialog() { return this.ShowDialog(null); } |
37 |
private void PreInitShow(IWin32Window owner) |
//public new DialogResult ShowDialog(IWin32Window owner) { return this.PreInitDialog(owner); } |
38 |
|
//private void PreInitShow(IWin32Window owner) |
39 |
|
//{ |
40 |
|
// if (!this.RefreshList()) { MessageBox.Show(string.Format("Could not find any Processes for plugin {0}. Please start an instance of one.",plugin.ToString())); } |
41 |
|
// else { if (owner == null) { base.Show(); } else { base.Show(owner); } } |
42 |
|
//} |
43 |
|
private void PreInitShow(DockPanel panel) |
44 |
{ |
{ |
45 |
if (!this.RefreshList()) { MessageBox.Show(string.Format("Could not find any Processes for plugin {0}. Please start an instance of one.",plugin.ToString())); } |
//if (panel == null) return; |
46 |
else { if (owner == null) { base.Show(); } else { base.Show(owner); } } |
if (!this.RefreshList()) { MessageBox.Show(string.Format("Could not find any Processes for plugin {0}. Please start an instance of one.", plugin.ToString())); } |
47 |
} |
else { if (panel == null) { base.Show(); } else { base.Show(panel); } } |
|
private DialogResult PreInitDialog(IWin32Window owner) |
|
|
{ |
|
|
if (!this.RefreshList()) { MessageBox.Show(string.Format("Could not find any Processes for plugin {0}. Please start an instance of one.", plugin.ToString())); return DialogResult.Cancel; } |
|
|
else { if (owner == null) { return base.ShowDialog(); } else { return base.ShowDialog(owner); } } |
|
48 |
} |
} |
49 |
|
//private DialogResult PreInitDialog(IWin32Window owner) |
50 |
|
//{ |
51 |
|
// if (!this.RefreshList()) { MessageBox.Show(string.Format("Could not find any Processes for plugin {0}. Please start an instance of one.", plugin.ToString())); return DialogResult.Cancel; } |
52 |
|
// else { if (owner == null) { return base.ShowDialog(); } else { return base.ShowDialog(owner); } } |
53 |
|
//} |
54 |
private void btnLargeIcon_Click(object sender, EventArgs e) { this.lstProcessList.View = View.LargeIcon; } |
private void btnLargeIcon_Click(object sender, EventArgs e) { this.lstProcessList.View = View.LargeIcon; } |
55 |
private void btnDetails_Click(object sender, EventArgs e) { this.lstProcessList.View = View.Details; } |
private void btnDetails_Click(object sender, EventArgs e) { this.lstProcessList.View = View.Details; } |
56 |
private void btnSmallIcon_Click(object sender, EventArgs e) { this.lstProcessList.View = View.SmallIcon; } |
private void btnSmallIcon_Click(object sender, EventArgs e) { this.lstProcessList.View = View.SmallIcon; } |