📜  caliburn.micro 对密码框的支持 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:15.639000             🧑  作者: Mango

代码示例1
public sealed class Bootstrapper : BootstrapperBase
{
    public Bootstrapper()
    {
        Initialize();

        ConventionManager.AddElementConvention(
            PasswordBoxHelper.BoundPasswordProperty,
            "Password",
            "PasswordChanged");
    }

    // other bootstrapper stuff here
}