コード例 #1
0
        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);
            }
        }
コード例 #2
0
ファイル: AuditTab.cs プロジェクト: joe-williams-cccu/OSIRTv2
        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);
            }
            
        }