1

我对 WP8 真的很陌生...而且我仍然了解我在 aspnet 中开发时曾经面对的一些机制...例如,数据源、数据绑定、...

我不明白如何可视化网格中的某些元素:

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0" Loaded="ContentPanel_Loaded">

      <TextBlock x:Name="xx" .../>  
</Grid>

我只想重复文本块 n 次......在这一刻我设法做到这一点的唯一方法就是做这样的事情

foreach (....)
{
     TextBlock tb = new TextBlock();
     tb.Text = p.Name;

     ContentPanel.Children.Add(tb);
}

但我想这不是正确的方法......有什么建议吗?谢谢

4

1 回答 1

1

这是xml

<ListBox x:Name="NameList">
   <ListBox.ItemTemplate>
        <DataTemplate>
           <StackPanel Orientation="Horizontal">
              <TextBlock Text="{Binding Path=Name}" Width="200"/>

           </StackPanel>
         </DataTemplate>
   </ListBox.ItemTemplate>
 </ListBox>

CS

   using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using StackOverFlowTestApp.Resources;
using Microsoft.Phone.Tasks;
using Microsoft.Phone.UserData;

namespace StackOverFlowTestApp
{
    public partial class MainPage : PhoneApplicationPage
    {
        private SaveAppointmentTask saveAppointmentTask;
        private List<int> listMinutes = new List<int>();
        // Constructor
        public MainPage()
        {
            InitializeComponent();
            List<User> list = new List<User>();
            for (int i = 0; i < 10; i++) {
                User user = new User();
                user.name = "Anobik"+i;
                list.Add(user);
            }
            NameList.ItemsSource = list;
        }


    }


    public class User {
        public string name { get; set; }
    }


}

尝试最简单的方法。但实际上绑定的概念延伸到 MVVM 所以你可以从文章中阅读

MVVM Windows 电话 8

于 2013-09-14T14:25:55.747 回答