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>
相关推荐
心平气和量大福大8 小时前
C#-WPF-布局-Grid
c#·wpf·visual studio
心平气和量大福大1 天前
C#-WPF-Window主窗体
开发语言·c#·wpf
FuckPatience1 天前
Telerik UI for WPF 值不能为null。参数名:key
ui·wpf
lindexi2 天前
WPF 笔迹延迟优化从硬件到软件的全链路分析
wpf
weixin_727535623 天前
双Token认证体系深度拆解:Spring Security + JWT + Redis
redis·spring·wpf
liuxiaowei33 天前
Winform+WPF双框架实战:喷涂工艺SCADA上位机从0到1搭建(附采集监控源码+车间踩坑实录)
大数据·hadoop·wpf
贺国亚4 天前
模型训练-分布式与GPU调度
分布式·wpf
不羁的木木4 天前
HarmonyOS技术精讲-Connectivity Kit:实战——多屏协同与文件快传应用
华为·wpf·harmonyos
某不知名網友5 天前
C++ 从零实现负载均衡式在线 OJ 判题系统|分布式沙箱判题实战
wpf
fogota5 天前
【AI】C# .NET8 WPF 第三方DLL引用配置(编译不丢失、不自动删除)
c#·.net·wpf·dll