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. C# using

    我们知道 using 语句只不过是提供能确保正确使用 IDisposable 对象的方便语法. 1: using (IDisposable reader1 = new StreamReader(inp ...

  2. oracle 11g高级 安装图解(摘自网络)

    使用的高级安装 启动OUI后出现“选择安装方式”窗口,我们选择:高级安装 步骤3:出现“选择安装类型”窗口,选择我们需要安装的版本.我们在此肯定是选择企业版. 至于产品语言不用选择,它会根据当前系统的 ...

  3. CSSd的优先级别

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

  4. Openlayer 3 的画图测量面积

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

  5. 封装一个Ajax工具函数

    /*封装一个ajax工具函数*/ window.$ = {}; /*通过$定义一个ajax函数*/ /* * 1. type   string   请求的方式  默认是get * 2. url     ...

  6. XCode工程内多Targets

    XCode工程内多Targets 可以认为一个target对应一个新的product(基于同一份代码的情况下). 虽然代码是同一份, 但编译设置(比如编译条件), 以及包含的资源文件却可以有很大的差别 ...

  7. 有关webapplicationcontext的初始化

    ApplicationContext是Spring的核心,Context我们通常解释为上下文环境,我想用“容器”来表述它更容易理解一些,ApplicationContext则是“应用的容器”了:在We ...

  8. hosts etc css-js

    http://laod.cn http://tool.css-js.com/rgba.html

  9. csdn如何转载别人的文章

    1.找到要转载的文章,用chrome浏览器打开,右键选择审查元素 2.在chrome中下方的框里找到对应的内容,html脚本中找到对应的节点,选中节点,网页上被选中内容会被高亮显示,然后右键菜单选中 ...

  10. kindle网络爬虫续集

    简单介绍: 这次我们要爬的网页是:Kindle商店中的今日特价书,其中每周/每月特价书同理,就不再重复了选择这个网页的原因有两个:一是实用,很多人都会经常去看看Kindle特价书有没有自己喜欢的:二是 ...