3 writes to props
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DataGridViewDataConnection.cs (3)
895this.props = this.currencyManager.GetItemProperties(); 1186this.props = this.currencyManager.GetItemProperties(); 1190this.props = null;
28 references to props
System.Windows.Forms (28)
winforms\Managed\System\WinForms\DataGridViewDataConnection.cs (28)
372Debug.Assert(this.props != null); 373return this.props[boundColumnIndex].Converter; 379if (this.props == null) 386for (int i = 0; i < this.props.Count; i++) 388if (String.Compare(this.props[i].Name, dataPropertyName, true /*ignoreCase*/, CultureInfo.InvariantCulture) == 0) 419if (String.Compare(this.props[boundColumnIndex].Name, sortProperty.Name, true /*ignoreCase*/, CultureInfo.InvariantCulture) == 0) 431Debug.Assert(this.props != null); 432return this.props[boundColumnIndex].PropertyType; 974if (this.props == null) 980return this.props[boundColumnIndex].IsReadOnly; 1016if (this.props == null) 1022for (int i = 0; i < this.props.Count; i++) 1024if (typeof(IList).IsAssignableFrom(this.props[i].PropertyType)) 1029if (!imageTypeConverter.CanConvertFrom(this.props[i].PropertyType)) 1035DataGridViewColumn dataGridViewColumn = GetDataGridViewColumnFromType(this.props[i].PropertyType); 1041dataGridViewColumn.DataPropertyName = this.props[i].Name; 1042dataGridViewColumn.Name = this.props[i].Name; 1043dataGridViewColumn.BoundColumnConverter = this.props[i].Converter; 1044dataGridViewColumn.HeaderText = !String.IsNullOrEmpty(this.props[i].DisplayName) ? this.props[i].DisplayName : this.props[i].Name; 1045dataGridViewColumn.ValueType = this.props[i].PropertyType; 1047dataGridViewColumn.IsBrowsableInternal = this.props[i].IsBrowsable; 1049dataGridViewColumn.ReadOnly = props[i].IsReadOnly; 1268return errInfo[this.props[boundColumnIndex].Name]; 1282value = this.props[boundColumnIndex].GetValue(this.currencyManager[rowIndex]); 1597this.props[boundColumnIndex].SetValue(this.currencyManager[rowIndex], value); 1654((IBindingList)this.List).ApplySort(this.props[dataGridViewColumn.BoundColumnIndex], direction);