2 writes to ValueMemberProperty
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (2)
1626
this.
ValueMemberProperty
= null;
1642
this.
ValueMemberProperty
= valueMemberProperty;
21 references to ValueMemberProperty
System.Windows.Forms (21)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (21)
409
else if (this.
ValueMemberProperty
!= null)
411
return this.
ValueMemberProperty
.PropertyType;
712
if (this.
ValueMemberProperty
!= null)
714
return this.
ValueMemberProperty
.PropertyType;
1138
if (this.
ValueMemberProperty
!= null)
1140
valueTypeConverter = this.
ValueMemberProperty
.Converter;
1173
if ((this.DataManager != null && (this.
ValueMemberProperty
!= null || this.DisplayMemberProperty != null)) ||
1254
else if (this.
ValueMemberProperty
!= null)
1256
displayValue = this.
ValueMemberProperty
.GetValue(item);
1318
if (this.
ValueMemberProperty
!= null)
1320
value = this.
ValueMemberProperty
.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);
2664
if (this.
ValueMemberProperty
!= null)
2666
valueTypeConverter = this.
ValueMemberProperty
.Converter;
2676
(this.DisplayMemberProperty != null || this.
ValueMemberProperty
!= null)) ||