public void Edit(Table obj)
        {
            if (this._currentType == obj.GetType()) return;
            BindGrid(obj.GlobalProperties);
            this._currentType = obj.GetType();
		}
Пример #2
0
		internal void AddTable(Table table)
		{
			this._array.Add(table);
		}
		public void Edit(Table obj)
		{
			BindGrid(obj.GlobalProperties);
		}