markus / DataBaseMerge / MainWindow.xaml @ 97a17f3a
이력 | 보기 | 이력해설 | 다운로드 (2.45 KB)
1 |
<Window
|
---|---|
2 |
x:Class="DataBaseMarge.MainWindow" |
3 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
4 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
5 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
6 |
xmlns:local="clr-namespace:DataBaseMerge" |
7 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
8 |
Title="MainWindow" |
9 |
Width="800" |
10 |
Height="450" |
11 |
mc:Ignorable="d"> |
12 |
<Grid>
|
13 |
<Grid.RowDefinitions>
|
14 |
<RowDefinition Height="Auto" /> |
15 |
<RowDefinition Height="Auto" /> |
16 |
<RowDefinition Height="Auto" /> |
17 |
<RowDefinition Height="*" /> |
18 |
<RowDefinition Height="*" /> |
19 |
</Grid.RowDefinitions>
|
20 |
<Grid.ColumnDefinitions>
|
21 |
<ColumnDefinition Width="100" /> |
22 |
<ColumnDefinition /> |
23 |
</Grid.ColumnDefinitions>
|
24 |
<TextBlock Text="Conn sample" /> |
25 |
<TextBox
|
26 |
Grid.Column="1" |
27 |
IsReadOnly="True" |
28 |
Text="data source=cloud.devdoftech.co.kr,7777;initial catalog=Markus;persist security info=True;user id=doftech;Password=dof1073#;MultipleActiveResultSets=True;" /> |
29 |
<TextBlock Grid.Row="1" Text="Conn str" /> |
30 |
<TextBox
|
31 |
x:Name="connStr" |
32 |
Grid.Row="1" |
33 |
Grid.Column="1" |
34 |
Text="data source=cloud.devdoftech.co.kr,7777;initial catalog=Markus;persist security info=True;user id=doftech;Password=dof1073#;MultipleActiveResultSets=True;" /> |
35 |
<TextBlock Grid.Row="2" Text="markupData id" /> |
36 |
<StackPanel
|
37 |
Grid.Row="2" |
38 |
Grid.Column="1" |
39 |
Orientation="Horizontal"> |
40 |
<TextBox x:Name="makupdataID" Width="200" /> |
41 |
<Button Click="Button_Click" Content="select" /> |
42 |
<Button
|
43 |
Margin="50,0,0,0" |
44 |
Click="test_Click" |
45 |
Content="marge Test" /> |
46 |
<Button
|
47 |
Margin="50,0,0,0" |
48 |
Click="Marge_Click" |
49 |
Content="marge Run" /> |
50 |
<Button
|
51 |
Margin="50,0,0,0" |
52 |
Click="delete_Click" |
53 |
Content="delete Run" /> |
54 |
|
55 |
</StackPanel>
|
56 |
<RichTextBox
|
57 |
x:Name="input" |
58 |
Grid.Row="3" |
59 |
Grid.ColumnSpan="2" |
60 |
AcceptsReturn="True" /> |
61 |
<RichTextBox
|
62 |
x:Name="log" |
63 |
Grid.Row="4" |
64 |
Grid.ColumnSpan="2" |
65 |
AcceptsReturn="True" /> |
66 |
</Grid>
|
67 |
</Window>
|