码迷,mamicode.com
首页 > 其他好文 > 详细

Xamarin.Forms之Button

时间:2016-06-12 20:27:20      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:

为什么要讲Button,不管是何种UI系统,Button始终是一种很最常见的控件,但是Forms中得Button在使用的过程是出现了一些问题,特此记录一下

1.IsEnabled属性

 即使设置了Button得背景色,当IsEnabled="false"的时候,背景色会变成灰色,文字也是会变成灰色

 

2.IsEnable属性无效的问题

的确有人遇到过这个问题,直接设置IsEnabled="false",Button居然该是可以点击,这就是一个BUG,截止到v2.2版本,Forms依旧没有解决

改问题的原因是Command与IsEnabled冲突导致的,如果在Xaml中Command放在IsEnabled的后面,则会出现上面的问题

<Button  Grid.Column="2" Text="点我" IsEnabled="{Binding signIsEnabled}"  Command="{Binding SignMessage}"  Style="{StaticResource DialogButtonStyle}"/>

 

目前有两种解决方法:

1).在Command中,设置CanExecute直接返回绑定的signIsEnabled,

new Command(()=>{},()=>isSignEnabled);

这样在isSignEnabled直接设置为false的时候,也是有效的

2).在XAML中,将IsEnabled放在Command的后面,就一切OK了

<Button  Grid.Column="2" Text="点我"   Command="{Binding SignMessage}"   IsEnabled="{Binding signIsEnabled}"   Style="{StaticResource DialogButtonStyle}"/>

  

Xamarin.Forms之Button

标签:

原文地址:http://www.cnblogs.com/yz1311/p/5578598.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!