如何检查用户何时输入Xamarin表单?

问题描述 投票:0回答:1

我是Xamarin Forms的新手,我想检查用户输入的时间,以便我可以基于此进行操作

<Entry IsPassword="True"
       Placeholder="password"
       Style="{StaticResource InputStyle}"
       Text=""
       Margin="16,0,16,0">
xamarin xamarin.forms xamarin.android xamarin.ios
1个回答
0
投票
在您的xaml中添加TextChanged事件

<Entry IsPassword="True" Placeholder="password" Style="{StaticResource InputStyle}" Text="" TextChanged="Entry_TextChanged" Margin="16,0,16,0">

并将其添加到页面后面的代码中以进行捕获:

void Entry_TextChanged(System.Object sender, TextChangedEventArgs e) { //do something here }

© www.soinside.com 2019 - 2024. All rights reserved.