xtd - Reference Guide  0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
input_dialog_password.cpp

The following code example demonstrate the use of input_dialog dialog with password.

Windows

macOS

Gnome

#include <xtd/xtd>
using namespace xtd;
using namespace xtd::forms;
namespace examples {
class form1 : public form {
public:
form1() {
text("Input dialog password example");
controls().push_back_range({button1, label1});
button1.location({10, 10});
button1.auto_size(true);
button1.text("Password...");
button1.click += [&] {
input_dialog.text("User password");
input_dialog.message("user: admin");
input_dialog.value(label1.text());
if (input_dialog.show_sheet_dialog(*this) == dialog_result::ok)
label1.text(input_dialog.value());
};
label1.location({10, 50});
label1.auto_size(true);
label1.text("sysad47@74dasys");
}
private:
button button1;
label label1;
};
}
int main() {
application::run(examples::form1());
}
Represents a Windows button control.
Definition: button.h:54
xtd::forms::dialog_result show_sheet_dialog(const iwin32_window &owner)
Runs a common dialog box with the specified owner.
Definition: common_dialog.h:91
Represents a window or dialog box that makes up an application's user interface.
Definition: form.h:40
Represents a common dialog box that displays input dialog.
Definition: input_dialog.h:30
xtd::ustring value() const
Gets the value.
Definition: input_dialog.h:118
xtd::ustring text() const
Gets the dialog caption text.
Definition: input_dialog.h:93
bool use_system_password_char() const
Gets use system password char status.
Definition: input_dialog.h:106
xtd::ustring message() const
Gets the text message.
Definition: input_dialog.h:81
Represents a standard Windows label.
Definition: label.h:26
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17