markus / FinalService / FinalServiceBase / UploadTest / MainWindow.xaml @ 42d49521
이력 | 보기 | 이력해설 | 다운로드 (1.76 KB)
1 | 42d49521 | taeseongkim | <Window x:Class="UploadTest.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:UploadTest" |
||
7 | mc:Ignorable="d" |
||
8 | Title="MainWindow" Height="450" Width="800"> |
||
9 | <Grid>
|
||
10 | <Grid.RowDefinitions>
|
||
11 | <RowDefinition Height="Auto"/> |
||
12 | <RowDefinition Height="Auto"/> |
||
13 | <RowDefinition Height="Auto"/> |
||
14 | <RowDefinition Height="*"/> |
||
15 | </Grid.RowDefinitions>
|
||
16 | <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Margin="2"> |
||
17 | <TextBlock Width="100" TextAlignment="Right" Text="FinalPDF ID"/> |
||
18 | <TextBlock Width="10" Text=" : "/> |
||
19 | <TextBox MinWidth="200" Name="tbFinalPDFID"/> |
||
20 | <Button Content="Call" HorizontalAlignment="Right" Width="100" Margin="2" Click="Button_Click"/> |
||
21 | </StackPanel>
|
||
22 | <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Margin="2" Grid.Row="1"> |
||
23 | <TextBlock Width="100" TextAlignment="Right" Text="Remote File Path"/> |
||
24 | <TextBlock Width="10" Text=" : "/> |
||
25 | <TextBox MinWidth="200" Name="tbRemoteFilePath"/> |
||
26 | </StackPanel>
|
||
27 | <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Margin="2" Grid.Row="2"> |
||
28 | <TextBlock Width="100" TextAlignment="Right" Text="Upload Service Url"/> |
||
29 | <TextBlock Width="10" Text=" : "/> |
||
30 | <TextBox MinWidth="200" Name="tbServiceUri"/> |
||
31 | </StackPanel>
|
||
32 | <TextBox Grid.Row="3" Name="tbLog" AcceptsReturn="True"/> |
||
33 | </Grid>
|
||
34 | </Window> |