예제 #1
0
		private void tabControl1_Selected(object sender, TabControlEventArgs e)
		{
			if (e.TabPage == tpShow) {
				BindGroup();
				BindAward();
				return;
			}

			IUpdatable update = TabPageUpdateMap[e.TabPage] as IUpdatable;
			if (update != null) {
				update.UpdateView();
			}
		}