markus / ConvertService / ServiceBase / ServiceTestApp / MainWindow.xaml @ 53c9637d
이력 | 보기 | 이력해설 | 다운로드 (3.63 KB)
1 | 53c9637d | taeseongkim | <Window x:Class="ServiceTestApp.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:ServiceTestApp" |
||
7 | mc:Ignorable="d" |
||
8 | Title="MainWindow" Height="450" Width="800"> |
||
9 | <Grid>
|
||
10 | <Grid.RowDefinitions>
|
||
11 | <RowDefinition Height="0.3*"/> |
||
12 | <RowDefinition Height="0.7*"/> |
||
13 | <RowDefinition Height="Auto"/> |
||
14 | </Grid.RowDefinitions>
|
||
15 | <ScrollViewer>
|
||
16 | <TextBlock x:Name="Log"/> |
||
17 | </ScrollViewer>
|
||
18 | <DataGrid AutoGenerateColumns="True" Grid.Row="1" x:Name="datagrid"/> |
||
19 | <Grid Grid.Row="2"> |
||
20 | <Grid.ColumnDefinitions>
|
||
21 | <ColumnDefinition/> |
||
22 | <ColumnDefinition/> |
||
23 | </Grid.ColumnDefinitions>
|
||
24 | <Grid > |
||
25 | <Grid.RowDefinitions>
|
||
26 | <RowDefinition Height="Auto"/> |
||
27 | <RowDefinition Height="Auto"/> |
||
28 | <RowDefinition Height="Auto"/> |
||
29 | <RowDefinition Height="Auto"/> |
||
30 | <RowDefinition Height="Auto"/> |
||
31 | <RowDefinition Height="Auto"/> |
||
32 | <RowDefinition Height="Auto"/> |
||
33 | <RowDefinition Height="Auto"/> |
||
34 | <RowDefinition Height="Auto"/> |
||
35 | <RowDefinition Height="Auto"/> |
||
36 | <RowDefinition Height="Auto"/> |
||
37 | <RowDefinition Height="Auto"/> |
||
38 | <RowDefinition Height="Auto"/> |
||
39 | </Grid.RowDefinitions>
|
||
40 | <Button Click="Button_Click" Content="Service Open"/> |
||
41 | <Button Click="ServiceInstall_Click" Content="Service Install Test" Grid.Row="1"/> |
||
42 | <Button Click="LibInstall_Click" Content="Pthreaad.dll Install Test" Grid.Row="2"/> |
||
43 | <Button Click="StationServiceCall_Click" Content="Station Service Call" Grid.Row="3"/> |
||
44 | <Button Click="ServiceCall_Click" Content="Convert Service Call" Grid.Row="4"/> |
||
45 | <Button Click="ItemAdd_Click" Content="database ConvertItem Add(Directory)" Grid.Row="5"/> |
||
46 | <Button Click="ItemAddFile_Click" Content="database ConvertItem Add(File)" Grid.Row="6"/> |
||
47 | <Button Click="AliveList_Click" Content="Alive List" Grid.Row="7"/> |
||
48 | <Button Click="WaitList_Click" Content="Wait List" Grid.Row="8"/> |
||
49 | <Button Click="ProcessKill_Click" Content="ProcessKill" Grid.Row="9"/> |
||
50 | <Button Click="DeadLockProcessList_Click" Content="Dead Lock Process List" Grid.Row="10"/> |
||
51 | <Button Click="RemoteFileList_Click" Content="원격파일 테스트" Grid.Row="11"/> |
||
52 | <Button Click="wcfTest_Click" Content="WCF OPEN" Grid.Row="12"/> |
||
53 | </Grid>
|
||
54 | <Grid Grid.Column="1"> |
||
55 | <Grid.RowDefinitions>
|
||
56 | <RowDefinition Height="Auto"/> |
||
57 | <RowDefinition Height="Auto"/> |
||
58 | </Grid.RowDefinitions>
|
||
59 | <StackPanel Orientation="Horizontal"> |
||
60 | <TextBlock Text="Process Count : " VerticalAlignment="Center"/> |
||
61 | <TextBox x:Name="txtProcessCount" Text="4" MinWidth="40" TextAlignment="Right" Margin="4"/> |
||
62 | <Button Content="Set Proecss" Click="Button_Click_1"/> |
||
63 | </StackPanel>
|
||
64 | <Button Grid.Row="1" Content="Doc Info Delete Test" Click="Button_Click_2"/> |
||
65 | <Button Grid.Row="2" Content="Web Service Test" Click="WebServiceTest_click"/> |
||
66 | </Grid>
|
||
67 | </Grid>
|
||
68 | </Grid>
|
||
69 | </Window> |