-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProfileWindow.xaml
25 lines (25 loc) · 1.16 KB
/
ProfileWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<Window
x:Class="ANULink.ProfileWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ANULink"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="ProfileWindow">
<Grid Margin="20">
<StackPanel>
<!-- 이름 입력 -->
<TextBox x:Name="NameTextBox" PlaceholderText="사용자 이름" Margin="0,10" />
<!-- 직책 입력 -->
<TextBox x:Name="PositionTextBox" PlaceholderText="직책" Margin="0,10" />
<!-- 피드 입력 -->
<TextBox x:Name="UserFeed1" PlaceholderText="UserFeed1" Margin="0,10" />
<TextBox x:Name="UserFeed2" PlaceholderText="UserFeed1" Margin="0,10" />
<TextBox x:Name="UserFeed3" PlaceholderText="UserFeed1" Margin="0,10" />
<!-- 정보 저장 -->
<Button Content="저장" HorizontalAlignment="Right" Click="OnSaveButtonClick"/>
</StackPanel>
</Grid>
</Window>