1.向ListBox中放入其他控件

XAML:

  1. <Window x:Class="ItemsControls.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="MainWindow" Height="184.328" Width="160.821">
  5. <Grid>
  6. <Grid>
  7. <ListBox Margin="5">
  8. <CheckBox x:Name="checkBoxTim" Content="Tim"></CheckBox>
  9. <CheckBox x:Name="checkBoxTom" Content="Tom"></CheckBox>
  10. <CheckBox x:Name="checkBoxBruce" Content="Bruce"></CheckBox>
  11. <Button x:Name="buttonMess" Content="Mess"></Button>
  12. <Button x:Name="buttonOwen" Content="Owen"></Button>
  13. <Button x:Name="buttonVictor" Content="Victor" Click="buttonVictor_Click"></Button>
  14. </ListBox>
  15. </Grid>
  16. </Grid>
  17. </Window>

C#:

  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.  
  15. namespace ItemsControls
  16. {
  17. /// <summary>
  18. /// MainWindow.xaml 的交互逻辑
  19. /// </summary>
  20. public partial class MainWindow : Window
  21. {
  22. public MainWindow()
  23. {
  24. InitializeComponent();
  25. }
  26.  
  27. /// <summary>
  28. /// 找出父级容器
  29. /// </summary>
  30. /// <param name="sender"></param>
  31. /// <param name="e"></param>
  32. private void buttonVictor_Click(object sender, RoutedEventArgs e)
  33. {
  34. Button btn = sender as Button;
  35. DependencyObject level1 = VisualTreeHelper.GetParent(btn);
  36. DependencyObject level2 = VisualTreeHelper.GetParent(level1);
  37. DependencyObject level3 = VisualTreeHelper.GetParent(level2);
  38. MessageBox.Show(level1.GetType().ToString());
  39. MessageBox.Show(level2.GetType().ToString());
  40. MessageBox.Show(level3.GetType().ToString());
  41. }
  42. }
  43. }

结果:

知识点:

1)ListBox的父级容器是ListBoxItem

2)把数据集交给ListBox后,无需标明ListBoxItem,它会自动包装整的

3)VisualTreeHelper类提供一些实用工具方法,用于执行涉及可视化树中的节点的常规任务。

2.放入其他数据

XAML:

  1. <Window x:Class="ItemsControls.Window1"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="Window1" Height="300" Width="300" Loaded="Window_Loaded">
  5. <Grid>
  6. <Grid>
  7. <ListBox x:Name="listBoxEmployee"></ListBox>
  8. </Grid>
  9. </Grid>
  10. </Window>

C#:

  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.Shapes;
  13.  
  14. namespace ItemsControls
  15. {
  16. /// <summary>
  17. /// Window1.xaml 的交互逻辑
  18. /// </summary>
  19. public partial class Window1 : Window
  20. {
  21. List<Employee> empList = new List<Employee>(){
  22. new Employee(){Id=,Name="Tim",Age=},
  23. new Employee(){Id=,Name="Tom",Age=},
  24. new Employee(){Id=,Name="Guo",Age=}
  25. };
  26.  
  27. public Window1()
  28. {
  29. InitializeComponent();
  30. }
  31.  
  32. private void Window_Loaded(object sender, RoutedEventArgs e)
  33. {
  34. this.listBoxEmployee.DisplayMemberPath = "Name";//设置在ListBox上显示的属性
  35. this.listBoxEmployee.SelectedValuePath = "Id";//设置ListBox选中后的属性值
  36. this.listBoxEmployee.ItemsSource = empList;
  37. }
  38. }
  39. }

结果:

知识点:

1)DisplayMemberPath设置要在ListBox上显示的属性

2)SelectedValuePath设置选中后的值的属性

3)ItemsSource设置数据源

一个ListBox的例子的更多相关文章

  1. 用一个简单的例子来理解python高阶函数

    ============================ 用一个简单的例子来理解python高阶函数 ============================ 最近在用mailx发送邮件, 写法大致如 ...

  2. Spring-Context之一:一个简单的例子

    很久之前就想系统的学习和掌握Spring框架,但是拖了很久都没有行动.现在趁着在外出差杂事不多,就花时间来由浅入深的研究下Spring框架.Spring框架这几年来已经发展成为一个巨无霸产品.从最初的 ...

  3. 高仿“点触验证码”做的一个静态Html例子

    先上源码: <html> <head> <title>TouClick - Designed By MrChu</title> <meta htt ...

  4. 关于apriori算法的一个简单的例子

    apriori算法是关联规则挖掘中很基础也很经典的一个算法,我认为很多教程出现大堆的公式不是很适合一个初学者理解.因此,本文列举一个简单的例子来演示下apriori算法的整个步骤. 下面这个表格是代表 ...

  5. 一个UWSGI的例子

    摘要:uwsgi执行顺序:启动master进程,执行python脚本的公共代码(import同一层).然后生成worker进程,uwsgi.post_fork_hook=init_functions, ...

  6. 扩展Python模块系列(二)----一个简单的例子

    本节使用一个简单的例子引出Python C/C++ API的详细使用方法.针对的是CPython的解释器. 目标:创建一个Python内建模块test,提供一个功能函数distance, 计算空间中两 ...

  7. fitnesse - 一个简单的例子(slim)

    fitnesse - 一个简单的例子(slim) 2017-09-30 目录1 编写测试代码(Fixture code)2 编写wiki page并运行  2.1 新建wikiPage  2.2 运行 ...

  8. Struts2的配置和一个简单的例子

    Struts2的配置和一个简单的例子 笔记仓库:https://github.com/nnngu/LearningNotes 简介 这篇文章主要讲如何在 IntelliJ IDEA 中使用 Strut ...

  9. 一个简单的例子搞懂ES6之Promise

    ES5中实现异步的常见方式不外乎以下几种: 1. 回调函数 2. 事件驱动 2. 自定义事件(根本上原理同事件驱动相同) 而ES6中的Promise的出现就使得异步变得非常简单.promise中的异步 ...

随机推荐

  1. 设置Tab键为四个空格

    https://my.oschina.net/xunxun10/blog/110074

  2. Java字符串转换

    public class StringConvertToInt{ public static void main(String[] args) { String a ="12a34bW()5 ...

  3. Error: 16GU盘变1G,恢复

    最近装win10,chromium os之后,删除U盘中的文件,发现不能删除,脑子一热格式化了,发现16G突然变成了1G,这不是坑爹吗,刚买的新U盘呀.立马百度,发现有说是买的被骗了,有的说使用某个软 ...

  4. android 中通过代码创建控件

    package bvb.de.openadbwireless.circle; import android.annotation.TargetApi; import android.app.Activ ...

  5. java.lang.Runtime类总结 【转】

    转自:http://blog.chinaunix.net/uid-128922-id-289994.html  Runtime类封装了运行时的环境.每个 Java 应用程序都有一个 Runtime 类 ...

  6. Linux下通过crontab及expect实现自动化处理 --亲测可用

    #!/usr/bin/expect -fspawn /home/scripts/bckup.shexpect "Enter password: "  send "WWQQ ...

  7. Hibernate,JPA注解@Version

    Hibernate实现悲观锁和乐观锁. 1,悲观锁 用例代码如下: 数据库DDL语句: hibernate.cfg.xml java类 以上代码(除下面的main之外)同乐观锁. main packa ...

  8. 查看mysql的状态

    实时查看mysql状态连接数 查询数 etc mysqladmin  -uroot  -p '' -h status -i 1

  9. html+css复习之第2篇 | javascript

    1. java 中定义数组和对象: 数组(Array)字面量 定义一个数组: [40, 100, 1, 5, 25, 10] 对象(Object)字面量 定义一个对象: {firstName:&quo ...

  10. Unity中HDR外发光的使用

    1.使用标准材质,设置好Emission外发光 2.Camera下打开HDR,加上Bloom特效 最终效果 如果只勾选HDR,只会有高光感,不会有外发光 注意,正向光照下打开HDR不可用抗锯齿,否则切 ...