markus / ConvertService / ServiceBase / ConnectionStringBuild / MainWindow.xaml @ 082cbc54
이력 | 보기 | 이력해설 | 다운로드 (1.71 KB)
1 |
<Window x:Class="ConnectionStringBuild.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:ConnectionStringBuild" |
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="Auto"/> |
14 |
<RowDefinition Height="Auto"/> |
15 |
<RowDefinition Height="Auto"/> |
16 |
</Grid.RowDefinitions>
|
17 |
<Grid>
|
18 |
<Grid.ColumnDefinitions>
|
19 |
<ColumnDefinition Width="Auto"/> |
20 |
<ColumnDefinition/> |
21 |
</Grid.ColumnDefinitions>
|
22 |
<TextBlock Text="Connection String(복호화)" VerticalAlignment="Center"/> |
23 |
<TextBox Grid.Column="1" Margin="2" x:Name="txtDecrypt"/> |
24 |
</Grid>
|
25 |
<Grid Grid.Row="1"> |
26 |
<Grid.ColumnDefinitions>
|
27 |
<ColumnDefinition Width="Auto"/> |
28 |
<ColumnDefinition/> |
29 |
</Grid.ColumnDefinitions>
|
30 |
<TextBlock Text="Connection String(암호화)" VerticalAlignment="Center"/> |
31 |
<TextBox Grid.Column="1" Margin="2" x:Name="txtEncrypt"/> |
32 |
</Grid>
|
33 |
<Button Grid.Row="2" Content="변환" Width="100" Margin="10" Click="Button_Click"/> |
34 |
<Button Grid.Row="3" Content="테스트" Width="100" Margin="10" Click="ButtonTest_Click"/> |
35 |
<TextBox x:Name="txtLog" Grid.Row="4" Margin="10"/> |
36 |
</Grid>
|
37 |
</Window>
|