返回导航时按钮点按问题

时间:2015-09-11 06:11:20

标签: xaml windows-phone-8 xamarin xamarin.ios xamarin-forms

在我的Xamarin表单应用程序中,有两页第1页和第2页。 单击第1页中的按钮时,从第1页到第2页进行导航。 我的问题是从第2页回到第1页时,按钮在第一次点击时没有响应,它将在第二次点击时响应。它不断发生。这是一个焦点问题。请帮帮我。

以下是我的UI的粗略设计

<Grid Grid.Row="0" Grid.Column="0" HorizontalOptions="Center" VerticalOptions="Center">
                <Grid.RowDefinitions>
                    <RowDefinition/>
                    <RowDefinition/>
                </Grid.RowDefinitions>  
                <Image   Source="selectuser.png" VerticalOptions="Center"/>
                <Label Grid.Row="1" Text="Select User" LineBreakMode="WordWrap" Style="{StaticResource ItemLabelStyle}" WidthRequest="95"/> 
                <Button Grid.RowSpan="2" BackgroundColor="Transparent"  Command="{Binding SelecUserCommand}" />
            </Grid>

0 个答案:

没有答案