Ejemplo n.º 1
0
 void ViewFragment(AnimationFragment fragment, bool canEdit = false)
 {
     if (fragment != null)
     {
         var view = AnimationFragmentViewModel.CreateFromFragment(_pfs, fragment, canEdit);
         TableWindow.Show(view);
     }
 }
Ejemplo n.º 2
0
 private void Classification_Click(object sender, RoutedEventArgs e)
 {
     if (dataModel != null)
     {
         init_intvscell();
         TableWindow tblWindow = new TableWindow(intvscell, classification: true);
         tblWindow.Show();
     }
 }
Ejemplo n.º 3
0
 public CreateTable()
 {
     if ((Data.RKK_File_Path != null) && (Data.Appeal_File_Path != null))
     {
         TableWindow taskWindow = new TableWindow();
         taskWindow.Show();
     }
     else
     {
         ErrorMessege Error = new ErrorMessege();
         Error.Show();
     }
 }
        public void ShowTable(string aTableName, bool Messages = false)
        {
            if (aTableName == null)
            {
                if (Messages) MessageBox.Show("Please pass a table name", "Show Table");
                return;
            }

            ITable myTable = GetTable(aTableName);
            if (myTable == null)
            {
                if (Messages)
                {
                    MessageBox.Show("Table " + aTableName + " not found in map");
                    return;
                }
            }

            ITableWindow myWin = new TableWindow();
            myWin.Table = myTable;
            myWin.Application = thisApplication;
            myWin.Show(true);
        }
Ejemplo n.º 5
0
 private void IntervalSearch_Click(object sender, RoutedEventArgs e)
 {
     init_intvscell();
     TableWindow tblWindow = new TableWindow(intvscell, classification: false);
     tblWindow.Show();
 }