• 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; }
        }
    }
    


  • 相关阅读:
    二分查找递归和非递归版
    git常用命令记录
    总结下本周所学的建站流程极其经验
    Ubuntu下su命令失败的解决方法,及其环境变量失效解决
    ubuntu下node安装的三种方法
    Markdown学习及如何在博客园中使用
    nmcli使用方法
    Elasticsearch 升级 7.x 版本后,我感觉掉坑里了!
    Spring Data Elasticsearch基本操作自定义查询
    ElasticSearch——聚合
  • 原文地址:https://www.cnblogs.com/wjchang/p/3671672.html
Copyright © 2020-2023  润新知