#c# #xamarin #xamarin.android
#c# #xamarin #xamarin.android
Вопрос:
Я не уверен, что я здесь делаю не так.
У меня есть страница карусели и страница содержимого, я хотел бы программно добавить страницу содержимого на страницу карусели, но когда я делаю это, в приложении ничего не происходит.
Я вижу, что элементы добавляются в список, но страницы не отображаются, когда я запускаю приведенный ниже код.
Любая помощь в том, что я делаю неправильно, очень ценится 🙂
MainPage.xaml
<?xml version="1.0" encoding="utf-8" ?>
<CarouselPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="DemoApp2.MainPage"
/>
MainPage.xaml.cs
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace DemoApp2
{
public partial class MainPage : CarouselPage
{
public MainPage()
{
InitializeComponent();
ObservableCollection<ContentPage> pages = new ObservableCollection<ContentPage>();
pages.Add(new StoryPage("This is page 1"));
pages.Add(new StoryPage("This is page 2"));
pages.Add(new StoryPage("This is page 3"));
pages.Add(new StoryPage("This is page 4"));
pages.Add(new StoryPage("This is page 5"));
this.ItemsSource = pages;
}
}
}
Страница истории.xaml
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="DemoApp2.StoryPage">
<ContentPage.Content>
<StackLayout>
<Label x:Name="YourLableName"
Text="Not Set"
TextColor="Black"
VerticalOptions="CenterAndExpand"
HorizontalOptions="CenterAndExpand" />
</StackLayout>
</ContentPage.Content>
</ContentPage>
Страница истории.xaml.cs
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace DemoApp2
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class StoryPage : ContentPage
{
public string PageText = "";
public StoryPage()
{
InitializeComponent();
PageText = "";
}
public StoryPage(string pageTextIn)
{
InitializeComponent();
YourLableName.TextColor = Color.Black;
YourLableName.Text = pageTextIn;
}
protected override void OnAppearing()
{
Debug.WriteLine("OnAppearing");
}
protected override void OnDisappearing()
{
Debug.WriteLine("OnDisappearing");
}
}
}
Ответ №1:
в документах есть наглядный пример этого. Если вы хотите использовать an ItemsSource
, вы должны указать a DataTemplate
. В противном случае вы измените Children
Children.Add(new StoryPage("This is page 1"));
Children.Add(new StoryPage("This is page 2"));
Children.Add(new StoryPage("This is page 3"));
Children.Add(new StoryPage("This is page 4"));
Children.Add(new StoryPage("This is page 5"));
Комментарии:
1. Большое вам спасибо
2. @fox909a Привет, если ответ будет полезен и решит эту проблему, не забудьте отметить это. Тогда другие люди, которые сталкиваются с тем же вопросом, будут знать решение.