我正在处理xamarin表单,并且在命令中遇到问题。我认为有手风琴用品。在手风琴项目内容中,我有一个按钮。该按钮命令未触发。我在运行时将视图模型绑定到手风琴中的特定项目。请提供任何帮助。
我尝试了以下方法,但这些方法无法正常工作,并且按钮无法访问视图模型命令。 1. BindingContext =“ {Binding Source = {x:Reference parentView}”, Path = BindingContext}“ Command =” {Binding ContinueCommand}“。 2. Command =“ {Binding BindingContext.ContinueCommand, Source = {x:Reference parentView}}“。
在xaml代码中:
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:Vm="clr-namespace:RCBazaar.ViewModels"
x:Class="RCBazaar.Views.Templates.AddressTemplate"
x:Name="parentView">
<ContentView.Content>
<StackLayout Padding="10">
<Label HorizontalTextAlignment="Center" Text="Mr.Akash Dayanand Central office house 1190,23th main,chamarajpete 6th block opposite to corner house Bangalore - 563738 Karnataka, India Tel:+91 9893393377"
Style="{StaticResource lblNormal}" LineBreakMode="WordWrap"/>
<Button Text="Continue" Command="{Binding BindingContext.ContinueCommand, Source={x:Reference parentView}}">
</Button>
</StackLayout>
</ContentView.Content>
</ContentView>