You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
4.8 KiB
Plaintext
79 lines
4.8 KiB
Plaintext
1 month ago
|
<Window x:Class="SlnMesnac.RfidUpload.UI.systemSetWindow"
|
||
|
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:SlnMesnac.RfidUpload.UI"
|
||
|
mc:Ignorable="d"
|
||
|
Title="系统设置" Height="750" Width="800">
|
||
|
<Grid Margin="50,50">
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition/>
|
||
|
|
||
|
</Grid.RowDefinitions>
|
||
|
<StackPanel Grid.Row="0" Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
|
||
|
<TextBlock Text="RequestURL:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0" Width="130"/>
|
||
|
<TextBox Text="{Binding requestURL}" FontSize="16" Grid.Row="1" Width="500" Height="40" VerticalContentAlignment="Center" HorizontalAlignment="Left" Padding="5">
|
||
|
</TextBox>
|
||
|
</StackPanel>
|
||
|
|
||
|
|
||
|
<StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
|
||
|
<TextBlock Text="AK:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0" Width="130"/>
|
||
|
<TextBox Text="{Binding ak}" FontSize="16" Grid.Row="1" Width="500" Height="40" VerticalContentAlignment="Center" HorizontalAlignment="Center" Padding="5">
|
||
|
</TextBox>
|
||
|
</StackPanel>
|
||
|
|
||
|
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
|
||
|
<TextBlock Text="SK:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0" Width="130"/>
|
||
|
<TextBox Text="{Binding sk}" FontSize="16" Grid.Row="1" Width="500" Height="40" VerticalContentAlignment="Center" HorizontalAlignment="Center" Padding="5">
|
||
|
</TextBox>
|
||
|
</StackPanel>
|
||
|
|
||
|
<StackPanel Grid.Row="3" Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
|
||
|
<TextBlock Text="SysCode:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0" Width="130"/>
|
||
|
<TextBox Text="{Binding sysCode}" FontSize="16" Grid.Row="1" Width="500" Height="40" VerticalContentAlignment="Center" HorizontalAlignment="Center" Padding="5">
|
||
|
</TextBox>
|
||
|
</StackPanel>
|
||
|
|
||
|
<StackPanel Grid.Row="4" Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
|
||
|
<TextBlock Text="Password:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0" Width="130"/>
|
||
|
<TextBox Text="{Binding password}" FontSize="16" Grid.Row="1" Width="500" Height="40" VerticalContentAlignment="Center" HorizontalAlignment="Center" Padding="5">
|
||
|
</TextBox>
|
||
|
</StackPanel>
|
||
|
|
||
|
<StackPanel Grid.Row="5" Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
|
||
|
<TextBlock Text="机构编号:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0" Width="130"/>
|
||
|
<TextBox Text="{Binding opOrgCode}" FontSize="16" Grid.Row="1" Width="500" Height="40" VerticalContentAlignment="Center" HorizontalAlignment="Center" Padding="5">
|
||
|
</TextBox>
|
||
|
</StackPanel>
|
||
|
|
||
|
|
||
|
<StackPanel Grid.Row="6" Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
|
||
|
<TextBlock Text="设备编号:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0" Width="130"/>
|
||
|
<TextBox Text="{Binding devicedId}" FontSize="16" Grid.Row="1" Width="500" Height="40" VerticalContentAlignment="Center" HorizontalAlignment="Center" Padding="5">
|
||
|
</TextBox>
|
||
|
</StackPanel>
|
||
|
|
||
|
|
||
|
|
||
|
<StackPanel Grid.Row="7" Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
|
||
|
<TextBlock Text="本地服务地址:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0" Width="130"/>
|
||
|
<TextBox Text="{Binding localUrl}" FontSize="16" Grid.Row="1" Width="500" Height="40" VerticalContentAlignment="Center" HorizontalAlignment="Center" Padding="5">
|
||
|
</TextBox>
|
||
|
</StackPanel>
|
||
|
|
||
|
<StackPanel Grid.Row="8" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
|
||
|
<Button Content="确定" Command="{Binding SubmitCommand}" Style="{StaticResource BUTTON_AGREE}" Width="80" Height="40" Background="#007DFA" BorderBrush="#007DFA" Margin="10,0,10,0"/>
|
||
|
</StackPanel>
|
||
|
</Grid>
|
||
|
</Window>
|