or
public partial class AlertProgressReport : Report { private readonly AlertProgressReportModel _model; public AlertProgressReport() { InitializeComponent(); } public AlertProgressReport(AlertProgressReportModel model) : this() { _model = model; table1.DataSource = _model.Rows; } private void textBoxTitle_ItemDataBinding(object sender, EventArgs e) { textBoxTitle.Value = _model.DateColumnNames["AlertName"] as string; }