문제

MDI 부모의 모든 형태의 어린이를 쉽게 타일하는 방법이 있습니까? Windows가 제공하는 대부분의 기능, 타일 캐스케이드를 찾고 있습니다. 쉬운 방법을 아는 사람이 있습니까?

도움이 되었습니까?

해결책

이것들을 시도하십시오 ...

// Tile all child forms horizontally.
this.LayoutMdi( MdiLayout.TileHorizontal );

// Tile all child forms vertically.
this.LayoutMdi( MdiLayout.TileVertical );

// Cascade all MDI child windows.
this.LayoutMdi( MdiLayout.Cascade );
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top