예제 #1
0
 public SampleDataCellValue(SampleDataRow row, SampleDataProperty property)
 {
     this.Row      = row;
     this.Property = property;
 }
예제 #2
0
 public SampleDataDialogColumn(SampleDataProperty property, ConfigureSampleDataDialog dialog)
 {
     this.dialog             = dialog;
     this.sampleDataProperty = property;
     this.SetTemplateForColumn();
 }
예제 #3
0
 public SampleDataCellValue GetCell(SampleDataProperty property)
 {
     return(this.Cells.Find((Predicate <SampleDataCellValue>)(cell => cell.Property == property)));
 }