wpf XMLDataProvider

csharp 复制代码
 <Window.Resources>
     <!--Data Template-->
     <DataTemplate DataType="Ut">
         <Grid>
             <StackPanel Orientation="Horizontal">
                 <Grid>
                     <Rectangle Stroke="Yellow" Fill="Orange" Width="{Binding XPath=@Price}"/>
                     <TextBlock Text="{Binding XPath=@Year}"/>
                 </Grid>
                 <TextBlock Text="{Binding XPath=@Price}" Margin="5.0"/>
             </StackPanel>
         </Grid>
     </DataTemplate>
     <XmlDataProvider x:Key="ds" XPath="Units/Unit/Ut">
         <x:XData>
             <Units xmlns="">
                 <Unit Year="2001" Price="100">
                     <Ut Year="3001" Price="300"></Ut>
                 </Unit>
                 <Unit Year="2001" Price="120"/>
                 <Unit Year="2001" Price="140"/>
                 <Unit Year="2001" Price="160"/>
                 <Unit Year="2001" Price="180"/>
                 <Unit Year="2001" Price="200"/>
             </Units>
         </x:XData>
     </XmlDataProvider>
 </Window.Resources>
 <Grid >

     <StackPanel>
         <ListBox ItemsSource="{Binding Source={StaticResource ds}}"/>
         <ComboBox ItemsSource="{Binding Source={StaticResource ds}}" Margin="5"/>
     </StackPanel>
 </Grid>
csharp 复制代码
 <Window.Resources>
         <!--<XmlDataProvider x:Key="ItemsDataProvider" XPath="/Items/Item">
             <x:XData>
                 <Items xmlns="">
                     <Item>Item1</Item>
                     <Item>Item2</Item>
                     <Item>Item3</Item>
                 </Items>
             </x:XData>
         </XmlDataProvider>-->
     <XmlDataProvider x:Key="ItemsDataProvider" XPath="/Items/Item" Source="./DataSources/XMLFile1.xml">
         
     </XmlDataProvider>
     </Window.Resources>
     <Grid>
         <ComboBox  ItemsSource="{Binding Source={StaticResource ItemsDataProvider}}" />
     </Grid>
相关推荐
IT小哥哥呀12 小时前
基于windows的个人/团队的时间管理工具
windows·c#·wpf·时间管理
sczmzx21 小时前
Cefsharp.WPF高分辨率下崩溃问题解决方案
wpf
cjp5602 天前
023.WPF combox控件数据绑定
wpf
Scout-leaf2 天前
WPF新手村教程(七)—— 终章(MVVM架构初见杀)
c#·wpf
极客智造2 天前
WPF DataGrid 多选绑定 + 强类型命令回调 通用解决方案
wpf
ZoeJoy82 天前
机器视觉C# 调用相机:从 USB 摄像头到海康工业相机(WinForms & WPF)
数码相机·c#·wpf
ALex_zry3 天前
C++高性能日志与监控系统设计
c++·unity·wpf
zhojiew3 天前
使用flink agent框架实现流式情感分析的示例
大数据·flink·wpf
海盗12343 天前
ScottPlot在WPF的基本使用和中文乱码问题
c#·.net·wpf
俄城杜小帅3 天前
C++线程异步和wpf中比较
java·c++·wpf