1 write to listAllowedCertificates
WsatUI (1)
MMCUI\AcceptedCertificatesForm.designer.cs (1)
40
this.
listAllowedCertificates
= new System.Windows.Forms.ListView();
20 references to listAllowedCertificates
WsatUI (20)
MMCUI\AcceptedCertificatesForm.cs (11)
75
this.
listAllowedCertificates
.Items.Add(listViewItem);
81
this.
listAllowedCertificates
.Items[i].Checked = true;
90
if (
listAllowedCertificates
.SelectedIndices.Count > 0)
93
this.store[
listAllowedCertificates
.SelectedIndices[0]],
100
this.allowedCertificates = new string[this.
listAllowedCertificates
.CheckedIndices.Count];
103
this.allowedCertificates[i] = store[
listAllowedCertificates
.CheckedIndices[i]].Thumbprint;
109
for (int i = 1; i < this.
listAllowedCertificates
.Columns.Count; i++)
111
this.
listAllowedCertificates
.Columns[i].Width = (this.
listAllowedCertificates
.Width - this.
listAllowedCertificates
.Columns[0].Width) / (this.
listAllowedCertificates
.Columns.Count - 1);
MMCUI\AcceptedCertificatesForm.designer.cs (9)
76
resources.ApplyResources(this.
listAllowedCertificates
, "listAllowedCertificates");
77
this.
listAllowedCertificates
.CheckBoxes = true;
78
this.
listAllowedCertificates
.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
85
this.
listAllowedCertificates
.FullRowSelect = true;
86
this.
listAllowedCertificates
.MultiSelect = false;
87
this.
listAllowedCertificates
.Name = "listAllowedCertificates";
88
this.
listAllowedCertificates
.View = System.Windows.Forms.View.Details;
89
this.
listAllowedCertificates
.Resize += new System.EventHandler(this.listAllowedCertificates_Resize);
131
this.Controls.Add(this.
listAllowedCertificates
);