XtraInputBox-How to set the XtraInputBox as password input?

How to set the XtraInputBox as password input?

[VB.NET]

Dim arg As New XtraInputBoxArgs() 
Dim editor As New TextEdit 

editor.Properties.UseSystemPasswordChar = True 
arg.Editor = editor 
arg.Caption = "Title" 
arg.Prompt = "Enter Password" 
arg.DefaultResponse = "" 

Dim passkey As String = XtraInputBox.Show(arg)
  • Igor (DevExpress Support)2 years ago

    Hello Chen,

    Thank you for informing us that you have found a way to complete your task. Please feel free to reactivate this ticket in case of any other questions regarding this scenario.

原文地址:https://www.cnblogs.com/grj001/p/12222973.html