我有一个运行在Uno平台上的WinUI 3应用程序,我正在尝试实现一个TreeView。我尝试了几个我在互联网上找到的例子,但没有一个运行得很好。唯一一个编译过的是来自unoprotage github的一个:https://github.com/unoplatform/uno/blob/master/src/SamplesApp/UITests.Shared/Microsoft_UI_Xaml_Controls/TreeView/TreeViewBasics.xaml
下面我们可以看到xaml和cs代码:
XAML文件:
<Page
x:Class="UITests.Microsoft_UI_Xaml_Controls.TreeView.TreeViewBasics"
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:local="using:UITests.Microsoft_UI_Xaml_Controls.TreeView"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
mc:Ignorable="d">
<Grid>
<muxc:TreeView>
<muxc:TreeView.RootNodes>
<muxc:TreeViewNode x:Name="RootNode" Content="Flavors" IsExpanded="True">
<muxc:TreeViewNode.Children>
<muxc:TreeViewNode Content="Vanilla" />
<muxc:TreeViewNode Content="Strawberry" />
<muxc:TreeViewNode Content="Chocolate">
<muxc:TreeViewNode.Children>
<muxc:TreeViewNode Content="Dark" />
<muxc:TreeViewNode Content="White" />
</muxc:TreeViewNode.Children>
</muxc:TreeViewNode>
<muxc:TreeViewNode Content="Caramel" />
</muxc:TreeViewNode.Children>
</muxc:TreeViewNode>
</muxc:TreeView.RootNodes>
</muxc:TreeView>
</Grid>
</Page>
政务司司长:
using Uno.UI.Samples.Controls;
using Windows.UI.Xaml.Controls;
namespace UITests.Microsoft_UI_Xaml_Controls.TreeView
{
[Sample("TreeView")]
public sealed partial class TreeViewBasics : Page
{
public TreeViewBasics()
{
this.InitializeComponent();
}
}
}
所以,我真的很想知道是否有人能够正确使用这段代码,如果它工作正常。当我运行它没有出现任何东西。
我也注意到他们在这里使用Uno.UI.Samples.Controls,我担心这可能是我的问题的根源,但我不能使用它,因为我实际上使用Uno.WinUI,如果我安装了两个nugget包和抱怨它。
如果有人能回答我的一些疑问,我将非常高兴。
- 谢谢-谢谢
1条答案
按热度按时间kd3sttzy1#
Uno平台Playground上显示了TreeView:https://playground.platform.uno/#treeview
但是,本文档指出了几个 * 未实现 * 的特性:https://platform.uno/docs/articles/implemented/windows-ui-xaml-controls-treeview.html
如果您有困难,可以联系Uno平台支持。