markus / UploadLicenseTest / MainWindow.xaml @ master
이력 | 보기 | 이력해설 | 다운로드 (1.05 KB)
1 |
<Window x:Class="UploadLicenseTest.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:UploadLicenseTest" |
7 |
mc:Ignorable="d" |
8 |
Title="MainWindow" Height="450" Width="400"> |
9 |
<Grid>
|
10 |
<Grid.RowDefinitions>
|
11 |
<RowDefinition Height="Auto"/> |
12 |
<RowDefinition/> |
13 |
</Grid.RowDefinitions>
|
14 |
<StackPanel>
|
15 |
<Button Width="100" Height="30" Content="Select File" Click="SelectFile_Click"/> |
16 |
<TextBlock x:Name="txtFilename" Height="30"/> |
17 |
<Button Width="100" Height="30" Content="Upload File" Click="UploadFile_Click"/> |
18 |
<Button Width="100" Height="30" Content="Get FileInfo" Click="GetFileInfo_Click"/> |
19 |
</StackPanel>
|
20 |
<RichTextBox x:Name="txtError" Grid.Row="1"/> |
21 |
</Grid>
|
22 |
|
23 |
</Window>
|