gpt4 book ai didi

wpf - MSDN 示例和缺少的 SDKSample

转载 作者:行者123 更新时间:2023-12-04 05:11:38 25 4
gpt4 key购买 nike

在 MSDN 示例中,有时我看到它指向一个 SDK 或库,但没有任何指向要下载的 SDK 的链接或指针。这是一般风格还是我遗漏了什么......

以下只是一个例子:

<Window x:Class="SDKSample.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="HierarchicalDataTemplate Sample"
xmlns:src="clr-namespace:SDKSample">
<DockPanel>
<DockPanel.Resources>
<src:ListLeagueList x:Key="MyList" />
<HierarchicalDataTemplate DataType="{x:Type src:League}"
ItemsSource="{Binding Path=Divisions}">
<TextBlock Text="{Binding Path=Name}" />
</HierarchicalDataTemplate>
<HierarchicalDataTemplate DataType="{x:Type src:Division}"
ItemsSource="{Binding Path=Teams}">
<TextBlock Text="{Binding Path=Name}" />
</HierarchicalDataTemplate>
<DataTemplate DataType="{x:Type src:Team}">
<TextBlock Text="{Binding Path=Name}" />
</DataTemplate>
</DockPanel.Resources>
<Menu Name="menu1"
DockPanel.Dock="Top"
Margin="10,10,10,10">
<MenuItem Header="My Soccer Leagues"
ItemsSource="{Binding Source={StaticResource MyList}}" />
</Menu>
<TreeView>
<TreeViewItem ItemsSource="{Binding Source={StaticResource MyList}}"
Header="My Soccer Leagues" />
</TreeView>
</DockPanel>
</Window>

我正在 MSDN 上查看此 xaml 代码 http://msdn.microsoft.com/en-us/library/system.windows.hierarchicaldatatemplate.aspx
一切都很好,但我遇到的问题是在哪里可以找到 SDKSample 类?

最佳答案

xmlns:src="clr-namespace:SDKSample"是对用于文档的主要项目的引用。你可以看到这是因为 Window1使用相同的命名空间:<Window x:Class="SDKSample.Window1"
但是,我没有看到下载整个文档项目的方法。您必须创建类 ListLeagueList你自己。幸运的是,有一个解释:

In the following example, ListLeagueList is a list of League objects. Each League object has a Name and a collection of Division objects. Each Division has a Name and a collection of Team objects, and each Team object has a Name.

关于wpf - MSDN 示例和缺少的 SDKSample,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14863840/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com