markus / ConvertService / ServiceBase / MonitorTest / MainWindow.xaml @ 2c629eec
이력 | 보기 | 이력해설 | 다운로드 (1.35 KB)
1 |
<Window x:Class="MonitorTest.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:MonitorTest" |
7 |
mc:Ignorable="d" |
8 |
Title="MainWindow" Height="450" Width="800"> |
9 |
<Grid>
|
10 |
<Grid.RowDefinitions>
|
11 |
<RowDefinition Height="Auto"/> |
12 |
</Grid.RowDefinitions>
|
13 |
<Grid>
|
14 |
<Grid.ColumnDefinitions>
|
15 |
<ColumnDefinition/> |
16 |
<ColumnDefinition/> |
17 |
<ColumnDefinition/> |
18 |
</Grid.ColumnDefinitions>
|
19 |
<StackPanel>
|
20 |
<TextBox Text="Process Name" x:Name="txtProcessName"/> |
21 |
<Button Content="Process Agument" Click="btProcessAguemnt_Click"/> |
22 |
</StackPanel>
|
23 |
<StackPanel Grid.Column="1"> |
24 |
<TextBlock Text="Process Name" x:Name="txtProcessWorkingDir"/> |
25 |
<Button Content="Process Agument" Click="btProcessWorking_Click"/> |
26 |
</StackPanel>
|
27 |
<StackPanel Grid.Column="2"> |
28 |
<Button Content="TIMER TEST" Click="btTimerTest_Click"/> |
29 |
</StackPanel>
|
30 |
</Grid>
|
31 |
</Grid>
|
32 |
</Window>
|