微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在Xamarin中更改IsEnabled和IsVisible进行密码确认

如何解决在Xamarin中更改IsEnabled和IsVisible进行密码确认

在我的Xamarin应用程序中,尝试确认密码(密码和确认密码)时,将IsVisible的{​​{1}}和Frame的{​​{1}}更改为应该有相同的文字),但没有任何改变。

具有讽刺意味的是,当应用程序打开时,认情况下(未输入任何值),IsEnabled为True。

当两个Button字段的值相同时,我想更改它。谢谢。

.xml代码

Password.Text == ConfirmPassword.Text

.xml.cs代码

Entry

解决方法

将您的if条件更改为此

ID |  Sentence   
1     This is very nice
1     Yes,very nice indeed
2     Hi,my name is John
,

使用以下linq:

sudo apt update
sudo apt install tesseract-ocr
sudo apt install libtesseract-dev
,

Xaml代码

<Entry
    x:Name="Password"
    IsPassword="True"
    Keyboard="Numeric"
    MaxLength="8"
    ReturnType="Next" Unfocused="Password_Unfocused" />

        <Entry
    x:Name="ConfirmPassword"
    IsPassword="True"
    Keyboard="Numeric"
    MaxLength="8"
    ReturnType="Done" Unfocused="ConfirmPassword_Unfocused"/>


        <Frame x:Name="RedBar" BackgroundColor="#E1444D" IsVisible="true">
            <BoxView />
        </Frame>

        <Frame x:Name="GreenBar" BackgroundColor="#24D27F" IsVisible="false">
            <BoxView />
        </Frame>


        <Button
    x:Name="PasswordButton"
            Clicked="PasswordButton_Clicked"
    IsEnabled="False"
    Text="Submit">
        </Button>

隐藏代码

public PasswordPage()
{
    InitializeComponent();

    ValidatePassword();
}

private void Password_Unfocused(object sender,FocusEventArgs e)
        {
            ValidatePassword();
        }

        private void ConfirmPassword_Unfocused(object sender,FocusEventArgs e)
        {
            ValidatePassword();
        }

 private void ValidatePassword()
            {
                if (!string.IsNullOrEmpty(Password.Text) && !string.IsNullOrEmpty(ConfirmPassword.Text))
                {
                    if (Password.Text == ConfirmPassword.Text)
                    {
                        RedBar.IsVisible = false;
                        GreenBar.IsVisible = true;
                        PasswordButton.IsEnabled = true;
                    }
    
                    else
                    {
                        RedBar.IsVisible = true;
                        GreenBar.IsVisible = false;
                        PasswordButton.IsEnabled = false;
                    }
                }
                else
                {
                    RedBar.IsVisible = true;
                    GreenBar.IsVisible = false;
                    PasswordButton.IsEnabled = false;
                }
            }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。