forked from jvmeir/mpviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultipleMPSelectionForm.cs
76 lines (64 loc) · 2.2 KB
/
MultipleMPSelectionForm.cs
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Common;
using Microsoft.EnterpriseManagement.Configuration;
namespace MPViewer
{
public partial class MultipleMPSelectionForm : Form
{
public IList<ManagementPack> ChosenMP;
private IList<ManagementPack> MPList;
public MultipleMPSelectionForm(IList<ManagementPack> MPListInput)
{
this.MPList = MPListInput;
this.MPSortableList = new SortableListView();
this.MPSortableList.Items.Clear();
this.MPSortableList.Columns.Clear();
this.MPSortableList.Columns.Add("Management Pack");
this.MPSortableList.Columns.Add("Version");
this.MPSortableList.Columns.Add("Sealed");
this.MPSortableList.MultiSelect = true;
foreach (ManagementPack mp in MPListInput)
{
ListViewItem item = new ListViewItem();
item.Text = mp.Name;
item.SubItems.Add(mp.Version.ToString());
item.SubItems.Add(mp.Sealed.ToString());
item.Tag = mp;
this.MPSortableList.Items.Add(item);
}
this.MPSortableList.AdjustColumnSizes();
InitializeComponent();
}
private void buttonOK_Click(object sender, EventArgs e)
{
ChosenMP = new List<ManagementPack>();
//since the form has multi-select disabled, the selected item is always index 0
foreach (ListViewItem item in MPSortableList.SelectedItems)
{
ChosenMP.Add((ManagementPack)item.Tag);
}
this.Close();
this.DialogResult = DialogResult.OK;
return;
}
private void MPSortableList_SelectedIndexChanged(object sender, EventArgs e)
{
if (MPSortableList.SelectedItems.Count == 0)
{
this.buttonOK.Enabled = false;
}
else
{
this.buttonOK.Enabled = true;
}
return;
}
}
}