markus / PemssApiTest / MainWindow.xaml @ 0b75c341
이력 | 보기 | 이력해설 | 다운로드 (1.52 KB)
1 | 0f6604ce | taeseongkim | <Window x:Class="PemssApiTest.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:PemssApiTest" |
||
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="*"/> |
||
14 | <RowDefinition Height="Auto"/> |
||
15 | <RowDefinition Height="Auto"/> |
||
16 | </Grid.RowDefinitions>
|
||
17 | <StackPanel Orientation="Horizontal"> |
||
18 | <Button Content="rest requirement call" Click="requirementCall_Click" Margin="2,0"/> |
||
19 | <Button Content="rest DocumentInfo call" Click="DocumentInfoCall_Click" Margin="2,0"/> |
||
20 | 0b75c341 | taeseongkim | <Button Content="Comment Add call" Click="CommentAddCall_Click" Margin="2,0"/> |
21 | 0f6604ce | taeseongkim | </StackPanel>
|
22 | <StackPanel Grid.Row="1" Orientation="Horizontal"> |
||
23 | <Button Content="Kcom API GetSymbolList call" Click="GetSymbolList_Click" Margin="2,0"/> |
||
24 | <Button Content="Kcom GetCompareRect call" Click="GetCompareRectCall_Click" Margin="2,0"/> |
||
25 | 0b75c341 | taeseongkim | <Button Content="Kcom GetMarkupDataForPage call" Click="GetMarkupDataForPageCall_Click" Margin="2,0"/> |
26 | 0f6604ce | taeseongkim | </StackPanel>
|
27 | <TextBox Grid.Row="2" Name="log"/> |
||
28 | </Grid>
|
||
29 | </Window> |