zoukankan      html  css  js  c++  java
  • WPF(Binding of LinQ)

    <Window x:Class="TestOfLinQBinding.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            Title="MainWindow" Height="350" Width="525">
        
        <StackPanel Background="LightBlue" >
            <ListView x:Name="listViewStudents"
                      Height="143"
                      Margin="5" >
                <ListView.View >
                    <GridView >
                        <GridViewColumn Header="Id" Width="60" 
                                        DisplayMemberBinding="{Binding Id}" />
                        <GridViewColumn Header="Name" Width="100"
                                        DisplayMemberBinding="{Binding Name}" />
                        <GridViewColumn Header="Age" Width="80"
                                        DisplayMemberBinding="{Binding Age}" />
                        
                    </GridView>
                </ListView.View>
            </ListView>
            <Button Content="Load" Height="25" Margin="5,0" Click="Button_Click" />
            
        </StackPanel>
    </Window>
    
    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 TestOfLinQBinding
    {
        /// <summary>
        /// Interaction logic for MainWindow.xaml
        /// </summary>
        public partial class MainWindow : Window
        {
            public MainWindow()
            {
                InitializeComponent();
            }
    
            private void Button_Click(object sender, RoutedEventArgs e)
            {
                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 = "Vina",Age = 25},
                    new Student(){Id = 5,Name = "Mike",Age = 24}
                };
    
                this.listViewStudents.ItemsSource = from student in stuList where student.Name.StartsWith("T") select student ;
    
            }
        }
    
        public class Student
        {
            public int Id { get; set; }
            public String Name { get; set; }
            public int Age { get; set; }
        }
    }
    


  • 相关阅读:
    如何让研发团队保持敏捷并不断进步?
    敏捷方法适合什么样的团队?
    规模化敏捷中的“三要”和“三不要”
    敏捷开发中如何使用看板方法创造价值
    4.0 初步预计更新内容
    3.0 环境应用(待更新)
    5.0 Genymotion安装以及基础使用
    2.0 python+appium环境搭建
    1.0 python-client以及ui自动化介绍
    教你一招另辟蹊径抓取美团火锅数据
  • 原文地址:https://www.cnblogs.com/wjchang/p/3671672.html
Copyright © 2011-2022 走看看