问题标签 [passwordbox]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
user-controls - 如何在 WinRT 中将 InputScope 属性添加到 PasswordBox?
如何将 Input Scope 属性添加到我的用户控件的 PasswordBox?
请你给我解释一下好吗?
谢谢。
alignment - Align PasswordBox text to center Windows store apps
I need to align password to center in PasswordBox like TextAlignment property do for TextBox, but unfortunately there is no TextAlignment property defined with PasswordBox element, In windows phone 8 i achieved this by modifying PasswordBox Template as this post -PasswordBox textalignment in WP7, But when searched for Windows Store App I found many post to regarding silverlight and wpf like This but not working for Windows store apps.
Thanks :)
wpf - 如何将 paaswordbox 值插入数据库表?
我使用 PasswordHelper 类将密码框与视图模型绑定,但在提交时属性字段仍然为空。我尝试使用调试器,但属性没有获得价值。
XAML 代码..
这是我的密码助手类。
wpf - WPF 显示 PasswordBox.Password
因此,在 WPF 中,我似乎无法创建带有密码字符的 TextBox,而 PasswordBox 我看不到取消隐藏密码的方法。
我已经尝试了以下我在 WPF 中的 TextBox 上的 WinForms 中使用的方法,但没有运气。有没有办法做到这一点?
只是为了添加一些关于我正在做的事情的细节需要这个。我有一个应用程序,其中包含许多不同系统和设备的许多凭据。因为我没有办法自动将它们发送到设备而需要访问这些的用户单击请求按钮,该按钮记录用户有权访问它们,然后将其显示给用户。
我目前将它们显示在消息框中,但这不允许用户在需要时复制/粘贴疯狂的密码。虽然我知道这也可能是一个安全问题。只是想让支持人员易于使用。
silverlight - Silverlight - 我需要知道密码框中的选定文本
我正在构建一个复杂的更改密码表单,但我需要一个简单的任务来继续我的工作:我需要知道在 PasswordBox 中选择了哪些文本。我知道如何在 TextBox 组件中使用 SelectedText 执行此操作,但我不能在 PasswordBox 中执行此操作。
你对这个问题有一些解决方案吗?谢谢
c# - 验证用户
我在这里和互联网上查看了如何解决这个问题的多种解决方案,但我似乎无法理解。我只是想为我正在开发的应用程序进行简单的登录。最终我会将它连接到服务器上的 SQL 数据库,但现在忘记了。这是代码:
那是我的 LoginWindow.xaml,这是我的窗口 cs 代码。
我已经用密码框尝试了一切,它一直给我一个 WPF 不支持它的错误,比如 PasswordBoxAssistant 和 Helper。将不胜感激任何帮助。以下是错误消息: Windows Presentation Foundation (WPF) 项目不支持错误 1 PasswordBoxAssistant。错误 5 XML 命名空间“ http://schemas.microsoft.com/winfx/2006/xaml
”
中不存在属性“PasswordBoxAssistant.BindPassword” 。第 50 行位置 13。
好的,现在我创建了一个名为 PasswordValidation 的类并添加了 PasswordBoxAssistant 代码。
}
以下是我得到的错误: 错误 1 名称“PasswordBoxAssistant”在命名空间“clr-namespace:ScotiaPlayTrade.Wpf.Application”中不存在。50 13
错误 2 Windows Presentation Foundation (WPF) 项目不支持 PasswordBoxAssistant。50 58
错误 3 在类型“PasswordBoxAssistant”中找不到可附加属性“BindPassword”。50 13
c# - 如果用户在 WPF 中输入任何内容,请检查 PasswordBox
我正在使用PasswordBox
并且我想检测用户何时在那里输入任何内容,如果是,我需要将按钮状态更改为启用。如何检查用户是否在PasswordBox
?
它的行为不同于TextBox
您无法将其绑定到文本并且当用户键入任何内容时会引发某些事件。任何的想法?
我已尝试使用以下代码,但出现错误:
c# - WP8 - C# - 从 Telerik RadPickerBox 获取对象值
我目前对此组件有疑问。这是我的应用程序中它的 xaml 用法:
我目前需要从我的 C# 代码中检索字段“NewPassword1”的值“密码”,但我仍然无法做到这一点。我已经尝试过用这样的方法来检索它:
box_change.NewPassword1.Password
但是,当然,否则我现在不会问这个问题,这种方式行不通。
你会建议什么来检索价值?
提前致谢,
圭多
c# - 如何将 2 个密码框作为 CommandParameter 传递给 Command?
在 WPF 中,PasswordBox.Password 不是 DP,所以我们不能直接在 ViewModel 中绑定它。网上搜了一下,使用了这个方法,但是只是在加载视图的时候调用了一次转换器,所以ExecuteMyCommand中的参数为null:
主窗口.xaml
转换器\PlainMultiValueConverter.cs
ViewModel\MainViewModel.cs
为什么转换器不能完美工作?我该怎么办?
wpf - TextBox (PasswordBox) SelectAll 方法不起作用
我在这里有一些概念问题。我知道如何选择 inTextBox
或 in 中的所有文本PasswordBox
。通过GotKeyboardFocus
和PreviewMouseLeftButtonDown
事件,你知道的。这工作正常。
XAML:
代码隐藏
但问题是 - 为什么这不起作用?
XAML:
代码隐藏:
在哪里_txtPassword
-TextBox
或PasswordBox
控制。那么为什么我要强制Focus
文本控制呢?