zoukankan      html  css  js  c++  java
  • WPF 体验数据邦定

    WPF主要做UI,所以数据邦定当然少不了。本节以ListBox为例,介绍数据邦定(和WinForm还是很有区别的哦)。

    先建立一个WPFApplication Project. 在Window xaml里添加一个ListBox控件。

    代码
    <Window x:Class="WpfProject.Test"
    xmlns
    ="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x
    ="http://schemas.microsoft.com/winfx/2006/xaml"
    Title
    ="Test" Height="300" Width="300" Loaded="Window_Loaded">
    <Grid>
    <ListBox Name="lbxPersons"></ListBox>
    </Grid>
    </Window>

    引用一个Loaded事件来完成我们的邦定。大家知道,ListBox是一个ItemControl,所以我们通过设置ItemSource来邦定数据。

    代码
    public partial class Test : Window
    {
    public Test()
    {
    InitializeComponent();
    }

    private void Window_Loaded(object sender, RoutedEventArgs e)
    {
    List
    <Person> persons = new List<Person>{
    new Person{FirstName="jimson",LastName="Ma"},
    new Person{FirstName="Lingxia",LastName="Wang"}
    };

    this.lbxPersons.ItemsSource = persons;
    }
    }

    public class Person{
    public string LastName { set; get; }
    public string FirstName { set; get; }
    }

    运行F5,结果:

    显然这样是不成的。改进xaml:

    代码
    <Window x:Class="WpfProject.Test"
    xmlns
    ="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x
    ="http://schemas.microsoft.com/winfx/2006/xaml"
    Title
    ="Test" Height="300" Width="300" Loaded="Window_Loaded">
    <Grid>
    <ListBox Name="lbxPersons">
    <ListBox.ItemTemplate>
    <DataTemplate>
    <StackPanel Orientation="Horizontal">
    <TextBlock Text="{Binding FirstName}" Width="50" />
    <TextBlock Text="{Binding LastName}" Width="50" />
    </StackPanel>
    </DataTemplate>
    </ListBox.ItemTemplate>
    </ListBox>
    </Grid>
    </Window>

    运行F5,结果:

    这下正确了。但是有个问题,空值怎么办?看看这个:

    代码
    <Window x:Class="WpfProject.Test"
    xmlns
    ="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x
    ="http://schemas.microsoft.com/winfx/2006/xaml"
    Title
    ="Test" Height="300" Width="300" Loaded="Window_Loaded">
    <Grid>
    <ListBox Name="lbxPersons">
    <ListBox.ItemTemplate>
    <DataTemplate>
    <StackPanel Orientation="Horizontal">
    <TextBlock Text="{Binding FirstName}" Width="50" />
    <TextBlock Text="{Binding LastName}" Width="50" />
    <TextBlock Text="{Binding Age, TargetNullValue='Age Unknown'}" />
    </StackPanel>
    </DataTemplate>
    </ListBox.ItemTemplate>
    </ListBox>
    </Grid>
    </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.Shapes;

    namespace WpfProject
    {
    /// <summary>
    /// Interaction logic for Test.xaml
    /// </summary>
    public partial class Test : Window
    {
    public Test()
    {
    InitializeComponent();
    }

    private void Window_Loaded(object sender, RoutedEventArgs e)
    {
    List
    <Person> persons = new List<Person>{
    new Person{FirstName="jimson",LastName="Ma", Age=23},
    new Person{FirstName="Lingxia",LastName="Wang"}
    };

    this.lbxPersons.ItemsSource = persons;
    }
    }

    public class Person{
    public string LastName { set; get; }
    public string FirstName { set; get; }
    public int? Age { set; get; }
    }

    }

    运行结果:

    应用TargetNullValue,很好的处理了控制信息。

    public partial class Test : Window
        {
            public Test()
            {
                InitializeComponent();
            }

            private void Window_Loaded(object sender, RoutedEventArgs e)
            {
                List<Person> persons = new List<Person>{
                    new Person{FirstName="jimson",LastName="Ma"},
                    new Person{FirstName="Lingxia",LastName="Wang"}
                };

                this.lbxPersons.ItemsSource = persons;
            }
        }

        public class Person{
            public string LastName { set; get; }
            public string FirstName { set; get; }
        }

  • 相关阅读:
    SQL server 2005转换为SQL server 2000的方法
    C#异步编程(转)
    在存储过程中如何使用另一个存储过程返回的结果集
    开始研究开源GIS软件之旅(SharpMap和WorldWind)
    WorldWind学习系列一:顺利起航篇
    WorldWind学习系列二:擒贼先擒王篇1
    WebService安全访问(资料收集)
    平台调用:C# 使用非托管dll函数
    VS2008环境下C#对Excel的操作 [C#] (收集转载)
    WorldWind学习系列二:擒贼先擒王篇2
  • 原文地址:https://www.cnblogs.com/jimson/p/WPF2.html
Copyright © 2011-2022 走看看