WPF嵌入式资源相关概念介绍

开发 开发工具
WPF嵌入式资源的相关概念,在这篇文章中将会以一段代码示例为大家详细介绍。希望大家可以通过本文介绍的内容得到帮助。

WPF开发工具的使用帮助我们实现了许多以前难以实现的图形处理功能。我们在这里将会为大家介绍一下有关WPF嵌入式资源的相关概念。#t#

WPF嵌入式资源代码示例:

  1. < Page x:Class="WpfWebApp.Page1" 
  2. xmlns="http://schemas.microsoft.
    com/winfx/2006/xaml/presentation"
     
  3. xmlns:uc="clr-namespace:
    WpfLibruary;assembly=WpfLibruary"
     
  4. xmlns:x="http://schemas.microsoft.
    com/winfx/2006/xaml"
     
  5. xmlns:local="clr-namespace:WpfWebApp" 
  6. Title="Page1" Height="332" 
    Width="757" VerticalAlignment="Top"> 
  7. < Page.Resources> 
  8. < local:PersonCollection x:Key="PersonC"> 
  9. < local:Person Id="1" Name="Cgc1" /> 
  10. < local:Person Id="2" Name="Cgc2" /> 
  11. < local:Person Id="3" Name="Cgc3" /> 
  12. < /local:PersonCollection> 
  13. < /Page.Resources> 
  14. < Grid Height="289"> 
  15. < TextBlock FontSize="24" 
    TextWrapping="Wrap" Margin=
    "0,0,0,-19.998"> 
  16. < Hyperlink x:Name="LnkPre" 
    NavigateUri="Page2.xaml" 
    Foreground="Black"> 
  17. Enter Page2  
  18. < /Hyperlink> 
  19. < /TextBlock> 
  20. < Button Margin="358,43,214,0" 
    Name="button1" Click="button1_Click" 
    Height="49.024" VerticalAlignment
    ="Top">Button< /Button> 
  21. < ListBox ItemsSource="{StaticResource 
    PersonC}"
     IsSynchronizedWithCurrentItem
    ="True" x:Name="LstPerson" 
    HorizontalAlignment="Left"
     Width="297" Height="131" 
    VerticalAlignment="Top"> 
  22. < ListBox.ItemTemplate> 
  23. < DataTemplate> 
  24. < DockPanel> 
  25. < TextBlock Text="{Binding 
    Path=Id}"
    >< /TextBlock> 
  26. < TextBlock Text="分分:">< /TextBlock> 
  27. < TextBlock Text="{Binding 
    Path=Name}"
    >< /TextBlock> 
  28. < /DockPanel> 
  29. < /DataTemplate> 
  30. < /ListBox.ItemTemplate> 
  31. < /ListBox> 
  32. < /Grid> 
  33. < /Page> 
  34. public class Person  
  35. {  
  36. public Person()  
  37. { }  
  38. public Person(Int32 Id, String Name)  
  39. {  
  40. this.Id = Id;  
  41. this.Name = Name;  
  42. }  
  43. public Int32 Id  
  44. {  
  45. get;  
  46. set;  
  47. }  
  48. public String Name  
  49. {  
  50. get;  
  51. set;  
  52. }  
  53. }  
  54. public class PersonCollection : 
    System.Collections.ObjectModel.
    ObservableCollection
    < Person> 
  55. {  

 

WPF嵌入式资源的相关概念就为大家介绍这里。

责任编辑:曹凯 来源: 博客园
相关推荐

2009-12-17 10:33:05

嵌入式Linux

2023-02-09 08:35:39

Spring嵌入式容器

2011-03-07 09:57:24

Perst嵌入式数据库

2009-12-23 13:05:22

Linux嵌入式

2009-12-25 10:05:06

WPF资源

2009-12-25 17:48:43

WPF资源路径

2013-09-22 10:39:00

MeayunDB

2009-12-29 13:29:28

WPF Depende

2009-12-28 15:18:29

WPF控件模型

2009-12-23 15:27:34

WPF图形系统

2009-06-11 11:09:02

Linux嵌入式开发环境

2009-12-29 09:54:27

WPF文字布局

2009-12-25 11:23:43

WPF命令模型

2009-12-28 16:20:50

WPF内嵌样式

2011-01-14 13:13:23

嵌入式Linux开发

2009-04-22 17:18:29

PCB技术单片机

2011-01-14 13:05:25

Linux内核嵌入式

2009-12-23 17:18:45

WPF Attache

2009-07-17 16:06:59

ARM嵌入式开发

2009-12-09 10:12:28

嵌入式Linux
点赞
收藏

51CTO技术栈公众号