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. mysql 批量修改表前缀

    直接贴码: SELECT a.*, concat( 'alter table ', a.TABLE_NAME, ' rename ge_', SUBSTR( a.TABLE_NAME FROM INS ...

  2. 关于cocos2dx的C++调用创建项目

    我使用的是cocos2dx-2.1.4版本+cygwin,其实主要是为了配合公司项目,所以用了低版本的cocos2dx 假设已经配置环境成功: 按照对应的要求输入包名,项目名,以及TargetId,就 ...

  3. mysql 取出的日期数据缺少时分秒

    项目使用的数据库是mysql  持久层框架是hibernate  利用SQLQuery 获取日期的时候缺少时分秒   将 .addScalar("dealTS",StandardB ...

  4. javascript基础(三)运算

    原文http://pij.robinqu.me/ 递增递减操作符(包括前置和后置).一元正负符号操作符 这些操作符适用于任何数据类型的值,针对不同类型的值,该操作符遵循以下规则(经过对比发现,其规则与 ...

  5. 二维小波包重构wprec2\wprcoef

    clc,clear all,close all; load woman; t=wpdec2(X,2,'haar');%小波包2层分解 r_X=wprec2(t);%重构小波包 r_X10=wprcoe ...

  6. 理解 Storm 拓扑的并行度(parallelism)概念

    组成:一个运行中的拓扑是由什么构成的:工作进程(worker processes),执行器(executors)和任务(tasks)! 在一个 Storm 集群中,Storm 主要通过以下三个部件来运 ...

  7. SpringMVC集成shrio框架

    使用SHIRO的步骤:1,导入jar2,配置web.xml3,建立dbRelm4,在Spring中配置 添加所需jar包: <!--Apache Shiro所需的jar包--> <d ...

  8. TakeColor 屏幕取色器 8.0 中文绿色版

    软件名称: TakeColor 屏幕取色器软件语言: 简体中文授权方式: 免费软件运行环境: Win8 / Win7 / Vista / WinXP软件大小: 210KB图片预览: 软件简介:使用方便 ...

  9. JQuery_图片未加载!

    JQuery_图片未加载! <html> <head> <script type="text/javascript" src="/jquer ...

  10. UVA 12083 POJ 2771 Guardian of Decency

    /* http://acm.hust.edu.cn/vjudge/contest/view.action?cid=71805#problem/C */ 性质: [1]二分图最大点独立数=顶点数-二分图 ...