3 writes to ValueMember
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (1)
877
dataGridViewCell.
ValueMember
= this.ValueMember;
winforms\Managed\System\WinForms\DataGridViewComboBoxColumn.cs (2)
398
this.ComboBoxCellTemplate.
ValueMember
= value;
409
dataGridViewCell.
ValueMember
= value;
19 references to ValueMember
System.Windows.Forms (19)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (18)
215
InitializeValueMemberPropertyDescriptor(this.
ValueMember
);
223
Debug.Assert(this.
ValueMember
!= null && this.
ValueMember
.Length > 0);
877
dataGridViewCell.ValueMember = this.
ValueMember
;
933
InitializeValueMemberPropertyDescriptor(this.
ValueMember
);
1174
!string.IsNullOrEmpty(this.
ValueMember
) || !string.IsNullOrEmpty(this.DisplayMember))
1268
else if (!string.IsNullOrEmpty(this.
ValueMember
))
1270
PropertyDescriptor propDesc = TypeDescriptor.GetProperties(item).Find(this.
ValueMember
, true /*caseInsensitive*/);
1328
else if (!string.IsNullOrEmpty(this.
ValueMember
))
1330
PropertyDescriptor propDesc = TypeDescriptor.GetProperties(item).Find(this.
ValueMember
, true /*caseInsensitive*/);
1549
comboBox.ValueMember = this.
ValueMember
;
1783
!string.IsNullOrEmpty(this.
ValueMember
) || !string.IsNullOrEmpty(this.DisplayMember));
1795
item = ItemFromComboBoxItems(rowIndex, string.IsNullOrEmpty(this.
ValueMember
) ? this.DisplayMember : this.
ValueMember
, value);
1825
!string.IsNullOrEmpty(this.DisplayMember) || !string.IsNullOrEmpty(this.
ValueMember
));
1837
item = ItemFromComboBoxItems(this.RowIndex, string.IsNullOrEmpty(this.DisplayMember) ? this.
ValueMember
: this.DisplayMember, formattedValue);
1857
InitializeValueMemberPropertyDescriptor(this.
ValueMember
);
2677
!string.IsNullOrEmpty(this.DisplayMember) || !string.IsNullOrEmpty(this.
ValueMember
))
winforms\Managed\System\WinForms\DataGridViewComboBoxColumn.cs (1)
390
return this.ComboBoxCellTemplate.
ValueMember
;