Visual Studio/WPF > 12 Grid 포국 > Grid를 사용하여 username, password, button을 배치하는 예 | F9: 디자이너에서 Grid 분할선 표시/숨기기
4272 단어 중국myVisualStudioStudyIDE
Windows 7 Pro (32bit)
Microsoft Visual Studio 2017 Community
Sublime Text 2
12 그리드 포국
htps //w w. 요츠베. 이 m/와 tch? v=C00_2T8FrVk&그리고 x=32&st=WL
Grid를 사용한 레이아웃에 따라 username, password, button의 배치를 실시하고 있다.
시도해 보았다.
MainWindow.xaml
<Window x:Class="_170512_t0655_grid.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:_170512_t0655_grid"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid Margin="20,20">
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<TextBlock Text="用戸名(user name):"></TextBlock>
<TextBox Name="T_username" Text="7of9" Grid.Column="1"></TextBox>
<TextBlock Text="password:" Grid.Row="1"></TextBlock>
<PasswordBox Password="12345" Grid.Column="1" Grid.Row="1"></PasswordBox>
<Button Content="login" Grid.Row="2" Grid.ColumnSpan="2"></Button>
</Grid>
</Window>
디자이너에서
실행
디자이너 > F9
디자이너에서 F9를 누르면 Grid의 분할을 나타내는 파란색 선이 사라졌다.
또 F9를 누르면 그 선이 보이게 되었다.
중국어 > 용호명
용호명 (yong hu ming)
사용자 이름
Reference
이 문제에 관하여(Visual Studio/WPF > 12 Grid 포국 > Grid를 사용하여 username, password, button을 배치하는 예 | F9: 디자이너에서 Grid 분할선 표시/숨기기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/4a29a8345bb0a320d807텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)