wpf 数据绑定
GridDemo\GridDemo\MainWindow.xaml.cs
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 GridDemo
{
public class Student
{
public string Name { get; set; }
public string Sex { get; set; }
}
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
Init();
}
public void Init()
{
var students = new List<Student>();
students.Add(new Student { Name = "Alice", Sex = "F" });
students.Add(new Student { Name = "Bruce", Sex = "M" });
students.Add(new Student { Name = "Celina", Sex = "F" });
this.com.ItemsSource = students;
}
}
}
GridDemo\GridDemo\MainWindow.xaml
<Window x:Class="GridDemo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:GridDemo"
mc:Ignorable="d"
Title="MainWindow" Height="300" Width="300">
<Window.Resources>
</Window.Resources>
<UniformGrid >
<ComboBox x:Name="com" Width="100" Height="20">
<ComboBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}"/>
<TextBlock Text=" "/>
<TextBlock Text="{Binding Sex}"/>
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
</UniformGrid>
</Window>
<Window x:Class="GridDemo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:GridDemo"
mc:Ignorable="d"
Title="MainWindow" Height="300" Width="300">
<Window.Resources>
</Window.Resources>
<UniformGrid Columns="1" Rows="2" >
<ListBox Width="100" Height="20" ItemsSource="{Binding ElementName=com, Path=ItemsSource}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}"/>
<TextBlock Text=" "/>
<TextBlock Text="{Binding Sex}"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<ComboBox x:Name="com" Width="100" Height="20">
<ComboBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}"/>
<TextBlock Text=" "/>
<TextBlock Text="{Binding Sex}"/>
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
</UniformGrid>
</Window>
<Window x:Class="GridDemo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:GridDemo"
mc:Ignorable="d"
Title="MainWindow" Height="300" Width="300">
<Window.Resources>
</Window.Resources>
<UniformGrid Columns="1" Rows="3" >
<ListBox Width="100" Height="20" Name="list">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}"/>
<TextBlock Text=" "/>
<TextBlock Text="{Binding Sex}"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<ListBox Width="100" Height="20" ItemsSource="{Binding ElementName=com, Path=ItemsSource}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}"/>
<TextBlock Text=" "/>
<TextBlock Text="{Binding Sex}"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<ComboBox x:Name="com" Width="100" Height="20">
<ComboBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}"/>
<TextBlock Text=" "/>
<TextBlock Text="{Binding Sex}"/>
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
</UniformGrid>
</Window>
标签:Windows,绑定,System,MainWindow,students,using,wpf,数据,public
From: https://www.cnblogs.com/zhuoss/p/18505313