[나크21] 캐주얼 미니스커트 치마바지 NK21-P-10
BLOG main image
분류 전체보기 (540)
▩▩ 개인공간 ▩▩ (124)
▩▩ 문화생활 ▩▩ (45)
▩▩ 게임 ▩▩ (211)
▩▩ 일러스트 ▩▩ (46)
▩▩ 프로그래밍 ▩▩ (73)
▩▩ 코스메틱 ▩▩ (1)
▩▩ 여행 ▩▩ (0)
* 셈틀 롤드컵 * (1)
반응형
Total
Today hit
Yesterday hit
▩▩ 프로그래밍 ▩▩/C#
반응형

bool treeCanExpand = false;

        private void treeView_BeforeCollapse(object sender, TreeViewCancelEventArgs e)
        {
            if (treeCanExpand == true && e.Action == TreeViewAction.Collapse)
                e.Cancel = true;
        }

        private void treeView_BeforeExpand(object sender, TreeViewCancelEventArgs e)
        {
            if (treeCanExpand == true && e.Action == TreeViewAction.Expand)
                e.Cancel = true;
        }

        private void treeView_MouseDown(object sender, MouseEventArgs e)
        {
            if (e.Clicks > 1)
                treeCanExpand = true;
            else
                treeCanExpand = false;
        }


출처 : http://stackoverflow.com/questions/1249312/disable-expanding-after-doubleclick

반응형