- 我安装的是vs2010 rtm 版本,同时安装了silvertool4 for 2010,但是发现不能中断,设置了中断之后程序根本不中断。
- 数据绑定,按照别人给的例子,怎么也绑定不了,我放了一个ListBox ,一个button 在button事件里面绑定数据,代码如下
代码public class Post
{
public String Title { get; set; }
public String Author { get; set; }
public DateTime PublishedDate { get; set; }
}
private void button1_Click(object sender, RoutedEventArgs e)
{
// this.dataGrid1.ItemsSource = Customer.GetSampleCustomerList();
List<Post> posts = new List<Post>()
{
new Post {Title ="开发第一个程序",Author ="nw",PublishedDate=DateTime.Now},
new Post {Title ="控件模型",Author ="nw",PublishedDate=DateTime.Now},
new Post {Title ="界面布局",Author ="nw",PublishedDate=DateTime.Now}
};
this.listBox1.ItemsSource = posts; // Customer.GetSampleCustomerList();
}
发现绑定结果如截图:
到底是什么原因,实在是不明白了。本人刚开始学silverlight ,望看到本人的高手给指点迷津。