2013-04-01 16:25 2188人阅读 评论(0) 收藏 举报
 分类:
.Net(C#)(31)  WPF(25) 

版权声明:本文为博主原创文章,未经博主允许不得转载。

  1. <Window x:Class="TestOfContentControl.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="350" Width="525">
  5. <StackPanel>
  6. <Button Margin="5" >
  7. <TextBlock Text="Hello" />
  8. </Button>
  9. <Button Margin="5" >
  10. <Image Source="j.png" Width="30" Height="30" />
  11. </Button>
  12. <GroupBox Margin="10" BorderBrush="Gray" >
  13. <GroupBox.Header>
  14. <Image Source="j.png" Width="20" Height="20" />
  15. </GroupBox.Header>
  16. <TextBlock TextWrapping="WrapWithOverflow" Margin="5"
  17. Text="一棵树,一匹马,一头大象和一只鸡在一起,打一种日常用品。"/>
  18. </GroupBox>
  19. </StackPanel>
  20. </Window>
  1. <Window x:Class="TestOfItemsControl.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="350" Width="525">
  5. <StackPanel>
  6. <ListBox Margin="5" >
  7. <CheckBox x:Name="checkBoxTim" Content="Tim" />
  8. <CheckBox x:Name="checkBoxTom" Content="Tom" />
  9. <CheckBox x:Name="checkBoxBruce" Content="Bruce" />
  10. <Button x:Name="buttonMess" Content="Mess" />
  11. <Button x:Name="buttonOwen" Content="Owen" />
  12. <Button x:Name="buttonVictor" Content="Victor" Click="buttonVictor_Click"/>
  13. </ListBox>
  14. <ListBox x:Name="empLists" >
  15. </ListBox>
  16. </StackPanel>
  17. </Window>
  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. namespace TestOfItemsControl
  15. {
  16. /// <summary>
  17. /// Interaction logic for MainWindow.xaml
  18. /// </summary>
  19. public partial class MainWindow : Window
  20. {
  21. public MainWindow()
  22. {
  23. InitializeComponent();
  24. }
  25. private void buttonVictor_Click(object sender, RoutedEventArgs e)
  26. {
  27. List<Employee> empList = new List<Employee>()
  28. {
  29. new Employee(){Id=1,Name="Tim",Age = 30},
  30. new Employee(){Id=2,Name="Tom",Age=26},
  31. new Employee(){Id=3,Name="Guo",Age=26},
  32. new Employee(){Id=4,Name="Yan",Age=26},
  33. new Employee(){Id=5,Name="Owen",Age=26},
  34. new Employee(){Id=6,Name="Victor",Age=26}
  35. };
  36. Button btn = sender as Button;
  37. DependencyObject level1 = VisualTreeHelper.GetParent(btn);
  38. DependencyObject level2 = VisualTreeHelper.GetParent(level1);
  39. DependencyObject level3 = VisualTreeHelper.GetParent(level2);
  40. MessageBox.Show(level3.GetType().ToString());
  41. this.empLists.DisplayMemberPath = "Name";
  42. this.empLists.SelectedValuePath = "Id";
  43. this.empLists.ItemsSource = empList;
  44. }
  45. }
  46. public class Employee
  47. {
  48. public int Id { get; set; }
  49. public string Name { get; set; }
  50. public int Age { get; set; }
  51. }
  52. }

WPF(ContentControl和ItemsControl)的更多相关文章

  1. 在WPF中的ItemsControl中使用事件和命令(Using events and Commands within ItemsControl in WPF)

    Say I have a standard WPF ItemsControl bound to an ObservableCollection of "Dog" objects l ...

  2. [WPF自定义控件库]了解如何自定义ItemsControl

    1. 前言 对WPF来说ContentControl和ItemsControl是最重要的两个控件. 顾名思义,ItemsControl表示可用于呈现一组Item的控件.大部分时候我们并不需要自定义It ...

  3. XAML中ContentControl,ItemsControl,DataTemplate之间的联系和区别

    接触XAML很久了,但一直没有深入学习.今天学习了如标题所示的内容,所以来和大家分享一下,或者准确的说是自我回顾一遍. 在XAML中,有两类我们常见的控件,分别是ContentControl和Item ...

  4. [UWP]了解模板化控件(8):ItemsControl

    1. 模仿ItemsControl 顾名思义,ItemsControl是展示一组数据的控件,它是UWP UI系统中最重要的控件之一,和展示单一数据的ContentControl构成了UWP UI的绝大 ...

  5. 从PRISM开始学WPF(三)Prism-Region?

    从PRISM开始学WPF(一)WPF? 从PRISM开始学WPF(二)Prism? 从PRISM开始学WPF(三)Prism-Region? 从PRISM开始学WPF(四)Prism-Module? ...

  6. 从PRISM开始学WPF(三)Prism-Region-更新至Prism7.1

    [7.1update]在开始前,我们先看下版本7.1中在本实例中的改动. 首先,项目文件中没有了Bootstrapper.cs,在上一篇的末尾,我们说过了,在7.1中,不见推荐使用Bootstrapp ...

  7. [UWP 自定义控件]了解模板化控件(8):ItemsControl

    1. 模仿ItemsControl 顾名思义,ItemsControl是展示一组数据的控件,它是UWP UI系统中最重要的控件之一,和展示单一数据的ContentControl构成了UWP UI的绝大 ...

  8. WPF核心对象模型-类图和解析

    DispatcherObject是根基类,通过继承该类,可以得到访问创建该对象的UI线程的Dispatcher对象的能力.通过Dispatcher对象,可以将代码段合并入该UI线程执行. Depend ...

  9. WPF DataTemplate與ControlTemplate

    一. 前言     什麼是DataTemplate? 什麼是ControlTemplate? 在stackoverflow有句簡短的解釋 "A DataTemplate, therefore ...

随机推荐

  1. input编辑框编辑状态切换

    <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8&quo ...

  2. 浙大pat 1035题解

    1035. Password (20) 时间限制 400 ms 内存限制 32000 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue To prepare f ...

  3. 修改weblogic中StuckThreadMaxTime参数

    your_domain->Environment ->Servers ->your_server->Configuration->Tuning->Stuck Thr ...

  4. BestCoder Round #85 A B C

    本来没有写博客的打算,可是看完了题解感觉这三道题这么水,我却只做出来一道,实在不应该,还是写点东西吧…… A.sum 问题描述 给定一个数列,求是否存在连续子列和为m的倍数,存在输出YES,否则输出N ...

  5. JSON.parse()和JSON.stringify()&&traditional(ajax请求)的作用

    parse是一个字符串中解析出json对象,如 var str = '{"name":"haizeiwang"}' 结果: JSON.parse(str) na ...

  6. Nginx正向代理让无法直接上网的机器通过代理上网

    Nginx正向代理让无法直接上网的机器通过代理上网 在阿里云平台买了几台ECS.但是只要其中一台开通了公网.由于要初始化系统环境,需要网络安装相关依赖. Nginx正向代理配置: 一.Nginx 正向 ...

  7. RPM安装gcc gcc-c++扩展

    rpm -ivh cpp--.el5.i386.rpm 回车 rpm -ivh kernel-headers--.el5.i386.rpm 回车 rpm -ivh glibc-headers-.i38 ...

  8. 安卓手机微信页面position: fixed位置错误

    今天做项目的时候发现动用position: fixed做弹窗时,用margin-top:50%这样外边距来响应式的控制位置时,在微信里打开页面的弹窗,弹窗在手机上显示的位置和实际上在手机上的位置不一样 ...

  9. js事件冒泡和捕捉

    (1)冒泡型事件:事件按照从最特定的事件目标到最不特定的事件目标(document对象)的顺序触发. IE 5.5: div -> body -> document IE 6.0: div ...

  10. 一个初学者的辛酸路程-了解Python-2

    前言 blog花了一上午写的,结果笔记本关机了,没有保存,找不到了,找不到了啊,所以说,你看的每一篇blog可能都是我写了2次以上的--.哎!! 代码改变世界,继续......... Python基础 ...