public void ShowInformation(string title, DataTable table)
 {
     OKButton.Visible = false;
     this.Text        = title;
     MyAdvancedListView.ShowFormattedTable(table);
     this.ShowDialog();
 }
 public void ShowMatrix(string title, string[,] matrix)
 {
     OKButton.Visible = false;
     this.Text        = title;
     MyAdvancedListView.ShowMatrix(matrix);
     this.ShowDialog();
 }
        public bool ShowInformationConfirm(string title, DataTable table)
        {
            CloseButton.Text = "&Cancel";
            this.Text        = title;
            MyAdvancedListView.ShowFormattedTable(table);
            this.ShowDialog();

            return(base.MyOKFlag);
        }
Esempio n. 4
0
 public void UpdateList()
 {
     MyAdvancedListView.ShowFormattedTable(MyListFetcher.GetData());
 }