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>
相关推荐
没有bug.的程序员1 天前
服务治理与 API 网关:微服务流量管理的艺术
java·分布式·微服务·架构·wpf
Brianna Home1 天前
【案例实战】鸿蒙分布式调度:跨设备协同实战
华为·wpf·harmonyos
c#上位机2 天前
wpf中Grid的MouseDown 事件无法触发的原因
c#·wpf
△曉風殘月〆2 天前
如何在WPF中实现ComboBox多选
wpf
csdn_aspnet3 天前
如何使用现有工具进行 .NET 8 迁移 Wpf
wpf·.net 8
123梦野3 天前
WPF——动画
wpf
攻城狮CSU3 天前
WPF 疑点汇总2.HorizontalAlignment和 HorizontalContentAlignment
wpf
c#上位机3 天前
wpf之命令
c#·wpf
没有bug.的程序员4 天前
分布式链路追踪:微服务可观测性的核心支柱
java·分布式·微服务·架构·wpf
Aevget4 天前
DevExpress WPF中文教程:Data Grid - 如何使用虚拟源?(一)
c#·wpf·界面控件·devexpress·ui开发