markus / FinalService / KCOM_FinalService / UploadTest / MainWindow.xaml @ master
이력 | 보기 | 이력해설 | 다운로드 (2.29 KB)
1 | 5622deac | taeseongkim | <Window
|
---|---|---|---|
2 | x:Class="UploadTest.MainWindow" |
||
3 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||
4 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||
5 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||
6 | xmlns:local="clr-namespace:UploadTest" |
||
7 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||
8 | Title="MainWindow" |
||
9 | Width="800" |
||
10 | Height="450" |
||
11 | mc:Ignorable="d"> |
||
12 | f3ab410f | taeseongkim | <Grid>
|
13 | <Grid.RowDefinitions>
|
||
14 | 5622deac | taeseongkim | <RowDefinition Height="Auto" /> |
15 | <RowDefinition Height="Auto" /> |
||
16 | <RowDefinition Height="Auto" /> |
||
17 | <RowDefinition Height="*" /> |
||
18 | <RowDefinition Height="Auto" /> |
||
19 | f3ab410f | taeseongkim | </Grid.RowDefinitions>
|
20 | 5622deac | taeseongkim | <StackPanel
|
21 | Margin="2" |
||
22 | HorizontalAlignment="Left" |
||
23 | Orientation="Horizontal"> |
||
24 | <TextBlock
|
||
25 | Width="100" |
||
26 | Text="FinalPDF ID" |
||
27 | TextAlignment="Right" /> |
||
28 | <TextBlock Width="10" Text=" : " /> |
||
29 | <TextBox Name="tbFinalPDFID" MinWidth="200" /> |
||
30 | <Button
|
||
31 | Width="100" |
||
32 | Margin="2" |
||
33 | HorizontalAlignment="Right" |
||
34 | Click="Button_Click" |
||
35 | Content="Call" /> |
||
36 | f3ab410f | taeseongkim | </StackPanel>
|
37 | 5622deac | taeseongkim | <StackPanel
|
38 | Grid.Row="1" |
||
39 | Margin="2" |
||
40 | HorizontalAlignment="Left" |
||
41 | Orientation="Horizontal"> |
||
42 | <TextBlock
|
||
43 | Width="100" |
||
44 | Text="Remote File Path" |
||
45 | TextAlignment="Right" /> |
||
46 | <TextBlock Width="10" Text=" : " /> |
||
47 | <TextBox Name="tbRemoteFilePath" MinWidth="200" /> |
||
48 | f3ab410f | taeseongkim | </StackPanel>
|
49 | 5622deac | taeseongkim | <StackPanel
|
50 | Grid.Row="2" |
||
51 | Margin="2" |
||
52 | HorizontalAlignment="Left" |
||
53 | Orientation="Horizontal"> |
||
54 | <TextBlock
|
||
55 | Width="100" |
||
56 | Text="Upload Service Url" |
||
57 | TextAlignment="Right" /> |
||
58 | <TextBlock Width="10" Text=" : " /> |
||
59 | <TextBox Name="tbServiceUri" MinWidth="200" /> |
||
60 | f3ab410f | taeseongkim | </StackPanel>
|
61 | 5622deac | taeseongkim | <TextBox
|
62 | Name="tbLog" |
||
63 | Grid.Row="3" |
||
64 | AcceptsReturn="True" /> |
||
65 | <Button
|
||
66 | Grid.Row="4" |
||
67 | Click="btnStamp_Click" |
||
68 | Content="Stamp" /> |
||
69 | f3ab410f | taeseongkim | </Grid>
|
70 | </Window> |