Esempio n. 1
0
 public DataGridViewGenericRowAndValue(DataGridViewGenericRow dataGridViewGenericRow, DataGridViewGenericCell dataGridViewGenericCell)
 {
     DataGridViewGenericRow  = dataGridViewGenericRow;
     DataGridViewGenericCell = dataGridViewGenericCell;
 }
Esempio n. 2
0
 public DataGridViewGenericRowAndValue(string headerName, PropertyKey propertyKey, bool cellReadOnly)
 {
     DataGridViewGenericRow  = new DataGridViewGenericRow(headerName);
     DataGridViewGenericCell = new DataGridViewGenericCell(null, new DataGridViewGenericCellStatus(cellReadOnly));
 }
Esempio n. 3
0
 public DataGridViewGenericRowAndValue(string headerName, string rowName, PropertyKey propertyKey, ReadWriteAccess readWriteAccess, bool isMultiLine, bool cellReadyOnly, object value)
 {
     DataGridViewGenericRow  = new DataGridViewGenericRow(headerName, rowName, readWriteAccess, isMultiLine, propertyKey);
     DataGridViewGenericCell = new DataGridViewGenericCell(value, new DataGridViewGenericCellStatus(cellReadyOnly));
 }