markus / ConvertService / ServiceBase / ConnectionStringBuild / MainWindow.xaml @ 53c9637d
이력 | 보기 | 이력해설 | 다운로드 (1.47 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 |
</Grid.RowDefinitions>
|
15 |
<Grid>
|
16 |
<Grid.ColumnDefinitions>
|
17 |
<ColumnDefinition Width="Auto"/> |
18 |
<ColumnDefinition/> |
19 |
</Grid.ColumnDefinitions>
|
20 |
<TextBlock Text="Connection String(복호화)" VerticalAlignment="Center"/> |
21 |
<TextBox Grid.Column="1" Margin="2" x:Name="txtDecrypt"/> |
22 |
</Grid>
|
23 |
<Grid Grid.Row="1"> |
24 |
<Grid.ColumnDefinitions>
|
25 |
<ColumnDefinition Width="Auto"/> |
26 |
<ColumnDefinition/> |
27 |
</Grid.ColumnDefinitions>
|
28 |
<TextBlock Text="Connection String(암호화)" VerticalAlignment="Center"/> |
29 |
<TextBox Grid.Column="1" Margin="2" x:Name="txtEncrypt"/> |
30 |
</Grid>
|
31 |
<Button Grid.Row="2" Content="변환" Width="100" Margin="10" Click="Button_Click"/> |
32 |
</Grid>
|
33 |
</Window>
|