Пример #1
0
 public TableEditorModelView(TableEditor editor, D2OTable table)
 {
     m_table  = table;
     m_editor = editor;
     GenerateColumns();
     LoadTable();
 }
Пример #2
0
 public TableEditor(D2OTable table)
 {
     InitializeComponent();
     DataContext = ModelView = new TableEditorModelView(this, table);
     FindSubClasses();
 }