SIL.FieldWorks.LexText.Controls.MasterCategoryListDlg.m_tvMasterList_AfterExpand C# (CSharp) 메소드

m_tvMasterList_AfterExpand() 개인적인 메소드

private m_tvMasterList_AfterExpand ( object sender, System e ) : void
sender object
e System
리턴 void
		private void m_tvMasterList_AfterExpand(object sender, System.Windows.Forms.TreeViewEventArgs e)
		{
			MasterCategory selMC = e.Node.Tag as MasterCategory;
			if (selMC.IsGroup)
			{
				e.Node.ImageIndex = 1;
				e.Node.SelectedImageIndex = 1;
			}
		}