VIZZARD Document Help

Start Page 컨트롤 화면 구성

시작 페이지 (Start Page) 컨트롤 Plugin API 및 예제

  1. SHControl 구현 절차 기준으로 Plugin 기본 코드를 구성합니다.

  2. VIZZARD 프로그램이 구동 완료되면, Start Page 영역에 컨트롤을 삽입합니다.

private void Connector_OnInitializedAppEvent(object sender, EventArgs e) { System.Windows.Forms.UserControl ctrl = new System.Windows.Forms.UserControl(); Connector.InitStartPage("VIZOn"); Connector.AddStartPageControl(ctrl, System.Windows.Forms.DockStyle.Fill, true); }

Figure 1 : 기본 화면

VIZZARD_DEV_STARTPAGE_01.png

    Figure 2 : START PAGE 컨트롤 적용 화면

    VIZZARD_DEV_STARTPAGE_02.png
      1. STARTPAGE 컨트롤의 보이기/숨기기 상태를 변경하고자 할 경우 아래와 같이 API를 호출합니다.

      // STARTPAGE 컨트롤 보이기 Connector.SetVisibleStartPage(true); // STARTPAGE 컨트롤 숨기기 Connector.SetVisibleStartPage(false);
      1. STARTPAGE 컨트롤의 Label을 변경하고자 할 경우 아래와 같이 API를 호출합니다.

      Connector.SetStartPageTitle("Custom View Page");
      1. 3D View와 STARTPAGE 컨트롤의 화면을 전환하고자 하는 경우 아래와 같이 API를 호출합니다.

      // STARTPAGE 컨트롤 조회 Connector.SelectStartPage(true); // 3D View 컨트롤 조회 Connector.SelectStartPage(false);
      Last modified: 04 3월 2024