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