2011/10/16

[C#] WPF에서 Client Area 설정하기

WPF를 처음 하면서 디자인 한 결과가 실행 한 화면과 다소 다른 것에 고민하다 XAML 의 최상위 Tag인 Window 안쪽에 처음 있는 Grid의 크기를 지정하고 Window Tag에 SizeToContent 속성을 WidthAndHeight로 변경을 하게 되면 고정된 크기의 Client Area 영역을 가지는 프로그램을 만들 수 있다.

<Window x:Class="MyFirstWPFApp.wndTestDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="wndTestDialog" SizeToContent="WidthAndHeight">
<Grid Height="300" Width="300"></Grid>
</Window>



&

Original Post : http://neodreamer-dev.tistory.com/597

No comments :

Post a Comment