markus / FinalService / FinalServiceBase / FinalPDFClient / MainWindow.xaml @ 42d49521
이력 | 보기 | 이력해설 | 다운로드 (2.26 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="*"/> |
16 |
<RowDefinition Height="Auto"/> |
17 |
</Grid.RowDefinitions>
|
18 |
<Grid.ColumnDefinitions>
|
19 |
<ColumnDefinition Width="Auto"/> |
20 |
<ColumnDefinition/> |
21 |
<ColumnDefinition/> |
22 |
</Grid.ColumnDefinitions>
|
23 |
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right"> |
24 |
<TextBlock Text="User Id : "/> |
25 |
<TextBox Name="txtUserId" Width="120" Text="doftech"/> |
26 |
</StackPanel>
|
27 |
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Grid.Row="1"> |
28 |
<TextBlock Text="Project NO : "/> |
29 |
<TextBox Name="txtProject" Width="120" Text="000000"/> |
30 |
</StackPanel>
|
31 |
<StackPanel Orientation="Horizontal" Grid.Row="2" HorizontalAlignment="Right"> |
32 |
<TextBlock Text="Document ID : "/> |
33 |
<TextBox Name="txtDocId" Width="120" Text="30000165"/> |
34 |
</StackPanel>
|
35 |
<Grid Grid.Row="3" Grid.ColumnSpan="3"> |
36 |
<Grid.ColumnDefinitions>
|
37 |
<ColumnDefinition Width="Auto"/> |
38 |
<ColumnDefinition/> |
39 |
</Grid.ColumnDefinitions>
|
40 |
<TextBlock Text="Output : "/> |
41 |
<TextBox Name="txtOutput" Grid.Column="1" Text=""/> |
42 |
</Grid>
|
43 |
<Button Grid.Row="4" Content="Merged PDF" Margin="2" Width="100" Click="Button_Click"/> |
44 |
<Button Grid.Row="4" Grid.Column="1" Content="Xaml To String" Margin="2" Width="100" Click="btXamlToString_Click"/> |
45 |
</Grid>
|
46 |
</Grid>
|
47 |
</Window>
|