예제 #1
0
        public void Initialize(TableSchemaCollection tables)
        {
            this.tables = tables;

            store = new SortedTableListStore(tables);
            store.TableToggled += delegate(object sender, EventArgs args) {
                if (TableToggled != null)
                {
                    TableToggled(this, args);
                }
            };
            list.Model = store.Store;
        }
예제 #2
0
		public void Initialize (TableSchemaCollection tables)
		{
			this.tables = tables;
			
			store = new SortedTableListStore (tables);
			store.TableToggled += delegate (object sender, EventArgs args) {
				if (TableToggled != null)
					TableToggled (this, args);
			};
			list.Model = store.Store;
		}