2 writes to ValueMemberProperty
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (2)
1626this.ValueMemberProperty = null; 1642this.ValueMemberProperty = valueMemberProperty;
21 references to ValueMemberProperty
System.Windows.Forms (21)
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (21)
409else if (this.ValueMemberProperty != null) 411return this.ValueMemberProperty.PropertyType; 712if (this.ValueMemberProperty != null) 714return this.ValueMemberProperty.PropertyType; 1138if (this.ValueMemberProperty != null) 1140valueTypeConverter = this.ValueMemberProperty.Converter; 1173if ((this.DataManager != null && (this.ValueMemberProperty != null || this.DisplayMemberProperty != null)) || 1254else if (this.ValueMemberProperty != null) 1256displayValue = this.ValueMemberProperty.GetValue(item); 1318if (this.ValueMemberProperty != null) 1320value = this.ValueMemberProperty.GetValue(item); 1782Debug.Assert(this.ValueMemberProperty != null || this.DisplayMemberProperty != null || 1786if (this.DisplayMemberProperty != null || this.ValueMemberProperty != null) 1790item = this.ItemFromComboBoxDataSource(this.ValueMemberProperty != null ? this.ValueMemberProperty : this.DisplayMemberProperty, value); 1824Debug.Assert(this.DisplayMemberProperty != null || this.ValueMemberProperty != null || 1828if (this.DisplayMemberProperty != null || this.ValueMemberProperty != null) 1832item = ItemFromComboBoxDataSource(this.DisplayMemberProperty != null ? this.DisplayMemberProperty : this.ValueMemberProperty, formattedValue); 2664if (this.ValueMemberProperty != null) 2666valueTypeConverter = this.ValueMemberProperty.Converter; 2676(this.DisplayMemberProperty != null || this.ValueMemberProperty != null)) ||