2 writes to DisplayMemberProperty
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (2)
1598
this.
DisplayMemberProperty
= null;
1614
this.
DisplayMemberProperty
= displayMemberProperty;
21 references to DisplayMemberProperty
System.Windows.Forms (21)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (21)
405
if (this.
DisplayMemberProperty
!= null)
407
return this.
DisplayMemberProperty
.PropertyType;
716
else if (this.
DisplayMemberProperty
!= null)
718
return this.
DisplayMemberProperty
.PropertyType;
1142
else if (this.
DisplayMemberProperty
!= null)
1144
valueTypeConverter = this.
DisplayMemberProperty
.Converter;
1173
if ((this.DataManager != null && (this.ValueMemberProperty != null || this.
DisplayMemberProperty
!= null)) ||
1249
if (this.
DisplayMemberProperty
!= null)
1251
displayValue = this.
DisplayMemberProperty
.GetValue(item);
1323
else if (this.
DisplayMemberProperty
!= null)
1325
value = this.
DisplayMemberProperty
.GetValue(item);
1782
Debug.Assert(this.ValueMemberProperty != null || this.
DisplayMemberProperty
!= null ||
1786
if (this.
DisplayMemberProperty
!= null || this.ValueMemberProperty != null)
1790
item = this.ItemFromComboBoxDataSource(this.ValueMemberProperty != null ? this.ValueMemberProperty : this.
DisplayMemberProperty
, value);
1824
Debug.Assert(this.
DisplayMemberProperty
!= null || this.ValueMemberProperty != null ||
1828
if (this.
DisplayMemberProperty
!= null || this.ValueMemberProperty != null)
1832
item = ItemFromComboBoxDataSource(this.
DisplayMemberProperty
!= null ? this.
DisplayMemberProperty
: this.ValueMemberProperty, formattedValue);
2668
else if (this.
DisplayMemberProperty
!= null)
2670
valueTypeConverter = this.
DisplayMemberProperty
.Converter;
2676
(this.
DisplayMemberProperty
!= null || this.ValueMemberProperty != null)) ||