加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
InputWindow.xaml 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
101367 提交于 2024-10-28 16:19 . 更新文档保存
<Window x:Class="hp_series_app.InputWindow"
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:hp_series_app"
mc:Ignorable="d"
Title="{Binding [str_info], Source={x:Static local:LanguageManager.Instance}}" Height="121" Width="358" ResizeMode="NoResize" WindowStartupLocation="CenterOwner" Icon="share.png">
<Canvas >
<TextBlock Text="{Binding [input_pwd], Source={x:Static local:LanguageManager.Instance}}" Name="Label" Margin="20,35,0,37" HorizontalAlignment="Center" VerticalAlignment="Center" Height="20" />
<PasswordBox x:Name="PwdBox" Width="122" Height="24" KeyDown="BarCodeInput_KeyDown" FontSize="16" VerticalContentAlignment="Center" BorderBrush="Black" HorizontalAlignment="Center" VerticalAlignment="Center" Canvas.Left="125" Canvas.Top="31"/>
<Button Height="24" Content="{Binding [prompt_confirm], Source={x:Static local:LanguageManager.Instance}}" Click="Button_Click" Width="60" Canvas.Left="265" Canvas.Top="31"/>
</Canvas>
</Window>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化