加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
InputWindow.xaml.cs 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
xfdr0805 提交于 2024-10-27 22:44 . update
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace hp_series_app
{
/// <summary>
/// InputWindow.xaml 的交互逻辑
/// </summary>
public partial class InputWindow : Window
{
private string text;
public InputWindow()
{
InitializeComponent();
this.PwdBox.Focus();
}
public InputWindow(string _label, string title) : this()
{
this.Label.Text = _label;
this.Title = title;
}
public string InputText { get => text; set => text = value; }
private void BarCodeInput_KeyDown(object sender, KeyEventArgs e)
{
if (e.Key == Key.Enter)
{
if (PwdBox.Password != "123456")
{
MessageBox.Show("输入密码不正确!", "提示", MessageBoxButton.OK, MessageBoxImage.Error);
return;
}
this.DialogResult = true;
this.Close();
}
}
private void Button_Click(object sender, RoutedEventArgs e)
{
KeyEventArgs keyEventArgs = new KeyEventArgs(Keyboard.PrimaryDevice, PresentationSource.FromVisual(PwdBox), 0, Key.Enter);
BarCodeInput_KeyDown(PwdBox, keyEventArgs);
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化