第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

當(dāng)輸入字段不可見(jiàn)時(shí),如何隱藏 Xamarin 表單中的錯(cuò)誤標(biāo)簽?

當(dāng)輸入字段不可見(jiàn)時(shí),如何隱藏 Xamarin 表單中的錯(cuò)誤標(biāo)簽?

C#
qq_花開(kāi)花謝_0 2023-09-16 15:49:25
我正在嘗試創(chuàng)建一個(gè)存在驗(yàn)證錯(cuò)誤的登錄頁(yè)面?,F(xiàn)在,如果輸入字段不可見(jiàn),也會(huì)出現(xiàn)驗(yàn)證錯(cuò)誤。當(dāng)輸入字段不可見(jiàn)時(shí),如何隱藏錯(cuò)誤標(biāo)簽?如下圖: PIN 輸入字段在登錄頁(yè)面上不可見(jiàn),但錯(cuò)誤消息:Pin is required,突出顯示。請(qǐng)問(wèn)有人可以建議一個(gè)解決方法嗎?
查看完整描述

1 回答

?
米琪卡哇伊

TA貢獻(xiàn)1998條經(jīng)驗(yàn) 獲得超6個(gè)贊

您可以使用數(shù)據(jù)綁定將IsVisibleof 標(biāo)簽綁定到視圖模型中的屬性。


<Label Text="Pin is required!"? TextColor="Red"? HorizontalTextAlignment="Center" IsVisible="{Binding isVisible}"/>


<Button Text="sign in" BackgroundColor="Red" TextColor="White" Command="{Binding ClickCommand}"? WidthRequest="200" />

在你的視圖模型中

public class YourViewModel: INotifyPropertyChanged

{

? ? public event PropertyChangedEventHandler PropertyChanged;


? ? protected virtual void NotifyPropertyChanged([CallerMemberName] string propertyName = "")

? ? {

? ? ? ? PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));

? ? }


? ? public ICammand ClickCommand {get; set;}



? ? private bool isvisible;


? ? public bool isVisible

? ? {

? ? ?get

? ? ?{

? ? ? ? return isvisible;

? ? ?}


? ? ?set

? ? ?{

? ? ? if (isvisible!= value)

? ? ? {

? ? ? ? isvisible= value;

? ? ? ? NotifyPropertyChanged();

? ? ? }

? ? }



? ? public YourViewModel()

? ? {

? ? ? ? //...?

? ? ? ? isVisible = true; //show the label in default

? ? ? ? ?

? ? ? ? ClickCommand = new Command(() =>

? ? ? ? {

? ? ? ? ? ?if(xxx)

? ? ? ? ? ?{

? ? ? ? ? ? ? isVisible =false;

? ? ? ? ? ?}

? ? ? ? ? ?

? ? ? ? ? ?else

? ? ? ? ? ?{?

? ? ? ? ? ? ? isVisible =true;

? ? ? ? ? ?}

? ? ? ? }) ;


? ? }


}


查看完整回答
反對(duì) 回復(fù) 2023-09-16
  • 1 回答
  • 0 關(guān)注
  • 111 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)