Beispiel #1
0
 public TPers(TSetting parent, string fio, int level, string symbol, string rem)
 {
     Parent    = parent;
     Fio       = fio;
     Level     = level;
     Symbol    = symbol;
     Rem       = rem;
     ComRemove = new RelayCommand(DoComRemove);
 }
Beispiel #2
0
 public TRoom(TSetting parent)
 {
     Parent    = parent;
     TableList = new TTable[RowCount, ColCount];
     for (int r = 0; r < RowCount; r++)
     {
         for (int c = 0; c < ColCount; c++)
         {
             TableList[r, c] = new TTable(this);
         }
     }
 }
Beispiel #3
0
        public static TPers[] GetPersList(TSetting set)
        {
            FNewClipboard fm = new FNewClipboard();

            fm.Core.Parent = set;
            fm.Owner       = App.Current.MainWindow;
            if (fm.ShowDialog() == true)
            {
                return(fm.Core.List);
            }
            else
            {
                return(null);
            }
        }
Beispiel #4
0
 public TLevel(TSetting parent, int level)
 {
     Parent = parent;
     Level  = level;
 }