WPF—ComboBox

作者:追风剑情 发布于:2019-8-19 12:05 分类:C#

示例

MainWindow.xaml

  1. <Window
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WpfTest"
  7. xmlns:Properties="clr-namespace:WpfTest.Properties" x:Class="WpfTest.MainWindow"
  8. mc:Ignorable="d"
  9. Title="MainWindow" Height="450" Width="800">
  10. <Grid>
  11. <!--DisplayMemberPath=指定要显示的属性名-->
  12. <ComboBox Name="comboBox" DisplayMemberPath="Name" SelectedValuePath="ID" SelectedIndex="0" SelectionChanged="comboBox_SelectionChanged" HorizontalAlignment="Left" Margin="25,20,0,0" VerticalAlignment="Top" Width="120"/>
  13.  
  14. </Grid>
  15. </Window>

MainWindow.xaml.cs

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Data;
  8. using System.Windows.Documents;
  9. using System.Windows.Input;
  10. using System.Windows.Media;
  11. using System.Windows.Media.Imaging;
  12. using System.Windows.Navigation;
  13. using System.Windows.Shapes;
  14. using System.ComponentModel;//INotifyPropertyChanged
  15.  
  16. namespace WpfTest
  17. {
  18. /// <summary>
  19. /// MainWindow.xaml 的交互逻辑
  20. /// </summary>
  21. public partial class MainWindow : Window
  22. {
  23. public MainWindow()
  24. {
  25. InitializeComponent();
  26. Init();
  27. }
  28.  
  29. private void Init()
  30. {
  31. List<Student> list = new List<Student>();
  32. list.Add(new Student { ID = 1001, Name = "小一" });
  33. list.Add(new Student { ID = 1002, Name = "小二" });
  34. list.Add(new Student { ID = 1003, Name = "小三" });
  35. this.comboBox.ItemsSource = list;
  36. }
  37.  
  38. private void comboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
  39. {
  40. ComboBox cb = sender as ComboBox;
  41. Student st = cb.SelectedItem as Student;
  42.  
  43. Console.WriteLine("SelectedIndex={0}", cb.SelectedIndex);
  44. Console.WriteLine("Selection: {0}", st.ToString());
  45. }
  46. }
  47.  
  48. public class Student
  49. {
  50. public int ID { get; set; }
  51. public string Name { get; set; }
  52.  
  53. public override string ToString()
  54. {
  55. return string.Format("ID={0}, Name={1}", ID, Name);
  56. }
  57. }
  58. }

运行测试

11111.png

2222.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号