Visual Studio | WPF > 구현: 디자인 타임과 런타임 윈도우 크기 차이 해결 > XAML 지원
Windows 8.1 Pro (64bit)
Microsoft Visual Studio 2017 Community
Sublime Text 2
관련
WPF 특유의 문제인지, 디자인시와 런타임에 윈도우 사이즈가 다르다.
한편, 컨트롤의 배치는 유지되는 것 같고, 컨트롤 우측과 하단의 마진이 이상해진 소프트가 된다.
대책
Visual Studio | WPF > SizeToContent="WidthAndHeight" > 내용에 따라 윈도우 크기를 변경해 준다
사용.
XAML에서 다음과 같이 설명한다.
그리드 안에 그리드 만들기
코드 예
MainWindow.xaml
<Window x:Class="_171207_t0936_controlLocation.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:_171207_t0936_controlLocation"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525"
SizeToContent="WidthAndHeight">
<Grid>
<!-- 実行時とデザイン時のウィンドウサイズの違い回避のため、-->
<!-- SizeToContent=WidthAndHeightと合わせて -->
<!-- 下記のGrid内でコントロールを配置すること -->
<Grid Height="320" Width="515" Margin="0,0,0,0">
<Button Content="Button" HorizontalAlignment="Left"
Margin="430,10,0,0" VerticalAlignment="Top" Width="75"/>
</Grid>
</Grid>
</Window>
디자인 타임
런타임
비고
매일 다양한 디자인 자료를 만들고 있는 사람들은 픽셀 단위로 위화감을 느낄지도 모른다.
그 외, 많은 유저에 대해서는 위화감은 적을 것이다.
Reference
이 문제에 관하여(Visual Studio | WPF > 구현: 디자인 타임과 런타임 윈도우 크기 차이 해결 > XAML 지원), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/ccc7a20d253440bdc8c4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)