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