1

私は自分の最初のWP8 applicationものを作成しようとしましたBind data from SQL Databaseこのチュートリアルに従いましたが、 black page appears.

WP8 ツールには ListBox がないためLongListSelector、次のように使用しました。

MainPage.xaml

 shell:SystemTray.IsVisible="True">

<phone:PhoneApplicationPage.Resources>
    <DataTemplate x:Key="ToursDataTemplate">
        <StackPanel Orientation="Horizontal">
            <TextBlock Margin="10" Text="{Binding name}"/>

        </StackPanel>
    </DataTemplate>


</phone:PhoneApplicationPage.Resources>

<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot" Background="Transparent">
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="9*"/>
        <ColumnDefinition Width="7*"/>
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto"/>
        <RowDefinition Height="*"/>
    </Grid.RowDefinitions>


    <phone:LongListSelector 
        x:Name="MyLongListSelectors"

        ItemsSource="{Binding}" 
        ItemTemplate="{StaticResource ToursDataTemplate}"
         />   

これは私の MainPage.xaml.cs です

using PhoneApp1.Resources;
using PhoneApp1.ToursServiceReference1;


namespace PhoneApp1
{
    public partial class MainPage : PhoneApplicationPage
    {
        // Constructor
        public MainPage()
        {
            InitializeComponent();

            // Sample code to localize the ApplicationBar
            //BuildLocalizedApplicationBar();
        }
        private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
        {
            ToursServiceReference1.ToursService1Client serviceClient = new ToursServiceReference1.ToursService1Client();

            serviceClient.GetAllKlientsCompleted += new EventHandler<ToursServiceReference1.GetAllKlientsCompletedEventArgs>(serviceClient_GetAllKlientsCompleted);

        serviceClient.GetAllKlientsAsync();
    }
    private void serviceClient_GetAllKlientsCompleted(object sender, ToursServiceReference1.GetAllKlientsCompletedEventArgs e)
    {
        if (e.Result != null)
        {
            MyLongListSelectors.ItemsSource = e.Result;
        }

    }

さらに情報を提供する必要がある場合は、お知らせください。これは静かな低品質の質問であるため、反対票を受け取らないことを願っています。

エラーなどの兆候はありません。

皆様、お時間をいただきありがとうございました。

ここに画像の説明を入力

4

1 に答える 1

1

あなたは正確に何を見ることを期待していますか?

serviceClient_GetAllKlientsCompletedメソッド内で何もしていません。表示するデータを提供していないため、リストは常に空になります

private void serviceClient_GetAllKlientsCompleted(object sender, ToursServiceReference1.GetAllKlientsCompletedEventArgs e)
        {
            if (e.Result != null)
            {
                //set the data context of list here 
            }

        }
于 2013-08-13T13:05:42.967 に答える