2022.11.28 TIL

SaGo_MunGcci·2022년 11월 28일
0

C#

목록 보기
7/27

탭이벤트 확인


 // 생성된후 다시 탭을 누를 경우
        private void tbCtrlJudge_Click(object sender, EventArgs e)
        {

            if (tbCtrlJudge.SelectedTabPageIndex == 0)
            {
                ActionBtnSetting();
                AMessageBox.ShowInstant("탭1");
            }
            else if (tbCtrlJudge.SelectedTabPageIndex == 1)
            {
                ActionBtnSetting1();
                AMessageBox.ShowInstant("탭2");
            }  
       
        }
profile
이리저리 생각만 많은 사고뭉치입니다.

0개의 댓글