0
私は自分のWebサービスから来て、リストを持っていると私はそうのようにそれを表示します。Xamarin - ListViewで新しいContentPageを開く方法
<StackLayout HorizontalOptions="FillAndExpand">
<ListView x:Name="curso" ItemSelected="CursoView_ItemSelected">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<ViewCell.View>
<StackLayout Orientation="Horizontal">
<StackLayout Orientation="Vertical" HorizontalOptions="FillAndExpand">
<Label StyleClass="Header" Text="{Binding name}" />
</StackLayout>
</StackLayout>
</ViewCell.View>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>
を、今だ新しいContentPage
を項目をクリックして開くことができるようにしたいです私の現在のページはNavigationPageではありません –
App.MainPageを新しいページに置き換えることはできますが、ユーザーは戻ることができません – Jason
あなたは新しいページをモーダルに表示することができます。 NavigationPage。 –