You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
1.3 KiB
16 lines
1.3 KiB
<Window x:Class="formula_manage.Windows.SQL_BAK"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:formula_manage.Windows"
|
|
mc:Ignorable="d" Loaded="Window_SQLBAK"
|
|
Title="SQL_BAK" Height="450" Width="500">
|
|
<Grid>
|
|
<CheckBox x:Name="SQL_bak" Height="20" Margin="320,30,55,0" VerticalAlignment="Top" Content="自定义备份地址" IsTabStop="False" Checked="SQLBAK_Checked" Unchecked="SQLBAK_Checked"/>
|
|
<TextBlock HorizontalAlignment="Left" Height="20" Margin="20,55,0,0" TextWrapping="Wrap" Text="备份地址:" VerticalAlignment="Top" Width="70" FontSize="16"/>
|
|
<TextBox x:Name="SQL_DISPEN_bak" HorizontalAlignment="Left" Height="20" Margin="90,55,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="285" TextChanged="SQL_DISPEN_bak_TextChanged"/>
|
|
<Button x:Name="SQL_DISPEN_BUT" Content="浏览路径" HorizontalAlignment="Left" Height="20" Margin="375,55,0,0" VerticalAlignment="Top" Width="70" Background="#FFF9F9F9" Click="Button_Click"/>
|
|
|
|
</Grid>
|
|
</Window>
|
|
|