WPF/C#学习笔记.2:Xml格式文件读取与通过XmlDataProvider以及资源模板“动态”绑定到TreeView

WPF/C#学习笔记.2

Xml格式文件读取与通过XmlDataProvider以及资源模板“动态”绑定到TreeView


What is XML?

XML一种树结构。
XML 文档必须包含且只能有一个根元素(RootNode)。该元素是所有其他元素的父元素。
XML 文档中的元素形成了一棵文档树。这棵树从根部开始,并扩展到树的最底端。所有元素均可拥有属性(Attribute)与子元素(ChildNode):

<root>
  <child attribute.Name="attribute.Value">
    <subchild> a string</subchild>
    <anotherSubChild attribute.Name="attribute.Value"/> 
  </child>
</root>

Tips of XML

  • 必须有标签的开始与关闭对 比如(<root>,</root>)和(<anotherSubchild /> ),而且“<”和“</”的右侧不能留空格(至少C#读取时会报错)。
  • Attribute的值用双引号围起来 比如aName="aValue"。

XML文件实例:

<?xml version="1.0" encoding="utf-8" ?>
<AircraftData>
  <F-14>
    <Name>Tomcat</Name>
    <Description>a supersonic, twin-engine, two-seat, variable-sweep wing fighter aircraft</Description>
    <Manufacturer>Grumman Aerospace Corporation</Manufacturer>
    <Cost>38million</Cost>
    <GeneralCharacteristics>
      <Crew>2(Pilot and Radar Intercept Officer)</Crew>
      <Length>62 ft 9 in (19.1 m)</Length>
      <Wingspan_Spread>64 ft (19.55 m)</Wingspan_Spread>
      <Wingspan_Swept>38 ft (11.58 m)</Wingspan_Swept>
      <Airfoil> NACA 64A209.65 mod root, 64A208.91 mod tip</Airfoil>
      <EmptyWeight> 43,735 lb (19,838 kg)</EmptyWeight>
      <LoadedWeight>61,000 lb (27,700 kg)</LoadedWeight>
      <MaxTakeoffWeight> 74,350 lb (33,720 kg)</MaxTakeoffWeight>
      <Powerplant>2*General Electric F110-GE-400 afterburning turbofans</Powerplant>
      <DryThrust>16,610 lbf (73.9 kN) each</DryThrust>
      <ThrustWithAfterburner>30,200 lbf (134 kN) each</ThrustWithAfterburner>
      <MaximumFuelCapacity> 16,200 lb internal; 20,000 lb with 2x 267 gallon external tanks</MaximumFuelCapacity>
    </GeneralCharacteristics>
    <Performance>
      <MaximumSpeed> Mach 2.34 (1,544 mph, 2,485 km/h) at high altitude</MaximumSpeed>
      <CombatRadius> 500 nmi (575 mi, 926 km)</CombatRadius>
      <FerryRange> 1,600 nmi (1,840 mi, 2,960 km)</FerryRange>
      <ServiceCeiling> 50,000=""+ ft (15,200 m)</ServiceCeiling>
      <RateOfClimb> LT45,000 ft/min (229 m/s)</RateOfClimb>
      <WingLoading> 96 lb/ft2[164] (468.7 kg/m^2)</WingLoading>
      <ThrustWeightRatio> 0.88</ThrustWeightRatio>
    </Performance> 
  </F-14>
</AircraftData>

Get more reference here

将XML通过XmlDataProvider,以及设置DataTemplate实现绑定到TreeView

MainWindow.xaml

<Window x:Class="xml2treeView.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:xml2treeView"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Window.Resources>

        <!-- 数据模板 -->
        <HierarchicalDataTemplate x:Key="NodeTemplate">
            <TextBlock x:Name="tb"/>
            <HierarchicalDataTemplate.ItemsSource>
                <Binding XPath="child::node()"/>
            </HierarchicalDataTemplate.ItemsSource>
            <HierarchicalDataTemplate.Triggers>
                <!-- 在TreeViewItem中显示Node.Content的实现方法 -->
                <DataTrigger Binding="{Binding Path=NodeType}" Value="Text">
                    <Setter TargetName="tb" Property="Text" Value="{Binding Path=Value}"/>
                </DataTrigger>
                <!-- 在TreeViewItem中显示Node.Name的实现方法 -->
                <DataTrigger Binding="{Binding Path=NodeType}" Value="Element">
                    <Setter TargetName="tb" Property="Text" Value="{Binding Path=Name}"/>
                </DataTrigger>
            </HierarchicalDataTemplate.Triggers>
        </HierarchicalDataTemplate>

        <!-- 设置资源绑定的对象和默认显示 -->
        <XmlDataProvider x:Key="xmlDataProvider" XPath="*">
            <x:XData>
                <RootNode xmlns="">
                    <ChildNode>
                        <SubChildNode>this is the 1st node</SubChildNode>
                        <SubChildNode>this is the 2rd node</SubChildNode>
                    </ChildNode>
                </RootNode>
            </x:XData>
        </XmlDataProvider>

        <!-- treeView绑定的动态目标 -->
        <Style x:Key="treeView_AllExpanded" TargetType="{x:Type TreeView}">
            <Style.Resources>
                <Style TargetType="TreeViewItem">
                    <Setter Property="IsExpanded" Value="True"/>
                </Style>
            </Style.Resources>
        </Style>
        <Style x:Key="treeView_AllCollapsed" TargetType="{x:Type TreeView}">
            <Style.Resources>
                <Style TargetType="TreeViewItem">
                    <Setter Property="IsExpanded" Value="False"/>
                </Style>
            </Style.Resources>
        </Style>
    </Window.Resources>

    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        <StackPanel Grid.Row="0" Orientation="Horizontal">
            <Button x:Name="cmdLoadXml" 
                    Content="loadXml"
                    Margin="3"
                    Padding="3"
                    Click="cmdLoadXml_Click"
                    ToolTip="Clik here to pick an XML-Document to be loaded"
                    />
            <Button x:Name="cmdExpandAll"
                    Content="Expand"
                    Margin="3"
                    Padding="3"
                    ToolTip="Click here to expand all TreeViewNodes"
                    Click="cmdExpandAll_Click"/>
            <Button x:Name="cmdCollapseAll"
                    Content="Collapse"
                    Margin="3"
                    Padding="3"
                    ToolTip="Click here to collapse all TreeViewNodes"
                    Click="cmdCollapseAll_Click"/>
        </StackPanel>
        <TreeView Grid.Row="1" x:Name="treeXml"
                      ItemTemplate="{StaticResource NodeTemplate}"
                      ItemsSource="{Binding Source={StaticResource xmlDataProvider}}"
                      Margin="3,0,3,3"/>
    </Grid>
</Window>

MainWindows.xaml.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Data;
using System.Xml;

namespace xml2treeView
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        
        private void cmdExpandAll_Click(object sender, RoutedEventArgs e)
        {
            this.treeXml.Style = (Style)this.FindResource("treeView_AllExpanded");
        }

        private void cmdCollapseAll_Click(object sender, RoutedEventArgs e)
        {
            this.treeXml.Style = (Style)this.FindResource("treeView_AllCollapsed");
        }

        private void cmdLoadXml_Click(object sender, RoutedEventArgs e)
        {
            try {
                Microsoft.Win32.OpenFileDialog openFD = new Microsoft.Win32.OpenFileDialog();
                openFD.Filter = "XML Documents (*.xml)|*.xml|All Files (*.*)|*.*";
                Nullable<bool> isUserPickFile = openFD.ShowDialog(this);

                if(isUserPickFile == true) {
                    XmlDocument xmlDoc = new XmlDocument();
                    xmlDoc.Load(openFD.FileName);
                    XmlDataProvider xmlDP = (XmlDataProvider)this.FindResource("xmlDataProvider");
                    xmlDP.Document = xmlDoc;
                    xmlDP.XPath = "*";
                }
            }
            catch(Exception ex) {
                MessageBox.Show(ex.Message);
            }
        }

    } 
}


Try it

初始效果
loadXmlDocument
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容

  • 非本人所写,在学习的时候觉得写的挺详细的。分享一下。 XML文件是一种常用的文件格式,例如WinForm里面的ap...
    毕竟是秀秀啊阅读 2,659评论 0 2
  • 目录 什么是WPF? WPF的历史? 为什么要用WPF及WPF作用 WPF与winForm区别? 什么是WPF? ...
    灬52赫兹灬阅读 5,777评论 2 11
  • 什么是机器学习 机器学习是一帮计算机科学家想让计算机像人一样思考所研发出的计算机理论,他们曾经说过,人和计算机本身...
    云时之间阅读 436评论 0 2
  • Sir前两天看到一条新闻。 去年我们的国产神剧之一《琅琊榜》,要在日本播出。 引进《琅琊榜》的日本Asia Rep...
    Sir电影阅读 3,312评论 8 16
  • 在最美的年纪遇见你,正如这一年,这个季节,我和大学有个“约会”。 都说人生是一本书,那青春则是其中最精彩的...
    飘零的回忆阅读 373评论 0 2