首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

WPF(Binding聚合对象数据源)

2013-04-09 
WPF(Binding集合对象数据源)using Systemusing System.Collections.Genericusing System.Linqusing Sys

WPF(Binding集合对象数据源)

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windows.Navigation;using System.Windows.Shapes;namespace TestOfBindingItemsControl{    /// <summary>    /// Interaction logic for MainWindow.xaml    /// </summary>    public partial class MainWindow : Window    {        public MainWindow()        {            InitializeComponent();            List<Student> stuList = new List<Student>()            {                  new Student(){Id = 0,Name = "Tim",Age = 29},                  new Student(){Id = 1,Name = "Tom",Age = 28},                  new Student(){Id = 2,Name = "Kyle",Age = 27},                  new Student(){Id = 3,Name = "Tony",Age = 26},                  new Student(){Id = 4,Name = "Vine",Age = 25},                  new Student(){Id = 5,Name = "Mike",Age = 24}                 };            // 为ListBox设置Binding            this.listBoxStudents.ItemsSource = stuList;            this.listBoxStudents.DisplayMemberPath = "Name";            Binding binding = new Binding("SelectedItem.Id")                                  {                                      Source = this.listBoxStudents                                  };            this.textBoxId.SetBinding(TextBox.TextProperty, binding);        }    }    public class Student    {        public int Id { get; set; }        public string Name { get; set; }        public int Age { get; set; }    }}


热点排行