|
|
<Window x:Class="B3DealerClient.SettingDialog"
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
Title="系统设置" Height="400" Width="400" ShowInTaskbar="False"
|
|
|
WindowStartupLocation="CenterOwner" ResizeMode="NoResize" FontSize="16" Loaded="Window_Loaded">
|
|
|
<Window.Resources>
|
|
|
<Style TargetType="Button" BasedOn="{StaticResource DefaultButton}">
|
|
|
<EventSetter Event="Click" Handler="Button_Click" />
|
|
|
</Style>
|
|
|
</Window.Resources>
|
|
|
<Grid Margin="5">
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition/>
|
|
|
<RowDefinition/>
|
|
|
<RowDefinition Height="80"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<Grid.ColumnDefinitions>
|
|
|
<ColumnDefinition Width="120"/>
|
|
|
<ColumnDefinition/>
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
<TextBlock Text="服务器地址:" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,10,0,0"/>
|
|
|
<TextBox x:Name="ServerUrlInput" Grid.Column="1" Width="220" Margin="10" TextWrapping="Wrap"/>
|
|
|
|
|
|
<TextBlock Grid.Row="1" Text="服务数据库:" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,10,0,0"/>
|
|
|
<TextBox x:Name="DbConnectInput" Grid.Row="1" Grid.Column="1" Width="220" Margin="10" TextWrapping="Wrap"/>
|
|
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="2" Grid.ColumnSpan="2" HorizontalAlignment="Center">
|
|
|
<Button Content="保存" Width="80" Height="40" Margin="15,5"/>
|
|
|
<Button Content="升级" Width="80" Height="40" Margin="15,5"/>
|
|
|
<Button Content="关闭" Width="80" Height="40" Margin="15,5"/>
|
|
|
</StackPanel>
|
|
|
</Grid>
|
|
|
</Window>
|