markus / FinalService / KCOM_FinalService / FinalPDFClient / MainWindow.xaml @ eaafc1eb
이력 | 보기 | 이력해설 | 다운로드 (1.74 KB)
1 |
<Window x:Class="FinalPDFClient.MainWindow" |
---|---|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
4 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
6 |
xmlns:local="clr-namespace:FinalPDFClient" |
7 |
mc:Ignorable="d" |
8 |
Title="MainWindow" Height="450" Width="800"> |
9 |
<Grid>
|
10 |
<Grid>
|
11 |
<Grid.RowDefinitions>
|
12 |
<RowDefinition Height="Auto"/> |
13 |
<RowDefinition Height="Auto"/> |
14 |
<RowDefinition Height="Auto"/> |
15 |
<RowDefinition Height="Auto"/> |
16 |
</Grid.RowDefinitions>
|
17 |
<Grid.ColumnDefinitions>
|
18 |
<ColumnDefinition Width="Auto"/> |
19 |
<ColumnDefinition/> |
20 |
<ColumnDefinition/> |
21 |
</Grid.ColumnDefinitions>
|
22 |
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right"> |
23 |
<TextBlock Text="User Id : "/> |
24 |
<TextBox Name="txtUserId" Width="120" Text="doftech"/> |
25 |
</StackPanel>
|
26 |
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Grid.Row="1"> |
27 |
<TextBlock Text="Project NO : "/> |
28 |
<TextBox Name="txtProject" Width="120" Text="000000"/> |
29 |
</StackPanel>
|
30 |
<StackPanel Orientation="Horizontal" Grid.Row="2" HorizontalAlignment="Right"> |
31 |
<TextBlock Text="Document ID : "/> |
32 |
<TextBox Name="txtDocId" Width="120" Text="30000165"/> |
33 |
</StackPanel>
|
34 |
<Button Grid.Row="3" Content="Merged PDF" Margin="2" Width="100" Click="Button_Click"/> |
35 |
</Grid>
|
36 |
</Grid>
|
37 |
</Window>
|