2 writes to pvUIItems
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (2)
531pvUIItems = null; 607pvUIItems = propValSvc.GetPropertyUIValueItems(this, propertyInfo);
18 references to pvUIItems
System.Windows.Forms (18)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (18)
429if (pvUIItems != null) { 430for (int i = 0; i < pvUIItems.Length; i++) { 432this.toolTipText = pvUIItems[i].ToolTip; 526if (pvUIItems != null) { 527for (int i = 0; i < pvUIItems.Length; i++) { 528pvUIItems[i].Reset(); 535return propertyInfo.CanResetValue(obj) || (pvUIItems != null && pvUIItems.Length > 0); 587if (pvUIItems != null && count == 2 && ((button & MouseButtons.Left) == MouseButtons.Left)) { 588for (int i = 0; i < pvUIItems.Length; i++) { 590pvUIItems[i].InvokeHandler(this, propertyInfo, pvUIItems[i]); 609if (pvUIItems != null) { 610if (uiItemRects == null || uiItemRects.Length != pvUIItems.Length) { 611uiItemRects = new Rectangle[pvUIItems.Length]; 622for (int i = 0; i < pvUIItems.Length; i++) { 624g.DrawImage(pvUIItems[i].Image, uiItemRects[i]); 626GridEntryHost.LabelPaintMargin = (scaledImageSizeX + 1) * pvUIItems.Length;