From d0ded5cd9bf5070a120bad58b5be21fe2ac6a4ff Mon Sep 17 00:00:00 2001
From: C3032 <C3032@BC3032>
Date: 星期六, 20 十二月 2025 16:41:09 +0800
Subject: [PATCH] test
---
IDViewer_2D/LoginWindow.xaml | 29 +++++++++++++++++++++++++++++
1 files changed, 29 insertions(+), 0 deletions(-)
diff --git a/IDViewer_2D/LoginWindow.xaml b/IDViewer_2D/LoginWindow.xaml
new file mode 100644
index 0000000..7c4a807
--- /dev/null
+++ b/IDViewer_2D/LoginWindow.xaml
@@ -0,0 +1,29 @@
+锘�<Window x:Class="SmartScanner.LoginWindow"
+ 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:SmartScanner"
+ mc:Ignorable="d"
+ Title="鏉冮檺楠岃瘉" Height="200" Width="300" ResizeMode="NoResize">
+ <Grid Margin="10">
+ <Grid.RowDefinitions>
+ <RowDefinition Height="Auto"/>
+ <RowDefinition Height="AUto"/>
+ <RowDefinition Height="Auto"/>
+ <RowDefinition Height="AUTO"/>
+ <RowDefinition Height="Auto"/>
+ </Grid.RowDefinitions>
+
+ <Label Grid.Row="0" Content="鐢ㄦ埛鍚�:"/>
+ <ComboBox Grid.Row="1" x:Name="cmbUsername" ItemsSource="{Binding UserList}" Height="25" DisplayMemberPath="Username"/>
+
+ <Label Grid.Row="2" Content="瀵嗙爜:"/>
+ <PasswordBox Grid.Row="3" x:Name="txtPassword" Height="25"/>
+
+ <StackPanel Grid.Row="4" Orientation="Horizontal" HorizontalAlignment="Right">
+ <Button Content="鐧诲綍" Width="80" Margin="5" Click="BtnLogin_Click"/>
+ <Button Content="鍙栨秷" Width="80" Margin="5" Click="BtnCancel_Click"/>
+ </StackPanel>
+ </Grid>
+</Window>
--
Gitblit v1.9.3