public AuditTab(string title, string table) { AuditLogGrid = new AuditGridView(table); Text = title; if (AuditLogGrid.TotalRows > 0) { Controls.Add(AuditLogGrid); } else { NoRecordsToShowPanel noRecordsPanel = new NoRecordsToShowPanel(); Controls.Add(noRecordsPanel); } }