목록MDI (2)
승적이익강 (勝敵而益强)
in the OnCreate event place the following code: [Delphi] if ClientHandle 0 then Winapi.Windows.SetParent(ClientHandle, pnlMDI.Handle);where pnlMDI is a TPanel that can be placed anywhere on the form. This however is not enough. The MDIClient is moved and sized in TCustomForm.AlignControls which needs to be overridden to keep it occupying the whole panel it has been parented to. In the form's int..
출처 : DelphiKorea - 일반강좌 - MDI 로 구현하는 MIS 프로젝트 ============================= MDI 로 구현하는 MIS 프로젝트 ============================= ==================목차====================== 1. 들어가며... 2. 간단한 MDI 프로그램 만들기 3. 메인폼을 다루기 1) 클라이언트 영역의 조절 2)메인폼에 그림넣기 3) 메인폼에 메시지 넣기 4)메인폼의 스크롤바 없애기 4. 차일드 폼 다루기 1)클래스 이름으로 차일드 생성하기 2)차일드가 보여지는 위치 고정하기 3)차일드가 한번만 실행되도록 하기 5. 메뉴 다루기 1) 창메뉴에 실행중인 차일드 리스트 보여주기 2) 메인폼의 메뉴를 차일드에서 ..