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