gpt4 book ai didi

WPF:使用 WPF 扩展中的 PropertyGrid

转载 作者:行者123 更新时间:2023-12-04 16:51:56 26 4
gpt4 key购买 nike

我是 WPF(.NET 4.0、VS2010)的新手,并尝试包含一个属性网格。我的 XAML 标记如下所示:

<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:WpfToolkit="clr-namespace:Xceed.Wpf.Toolkit.PropertyGrid;assembly=WPFToolkit.Extended"
Title="MainWindow" Height="350" Width="525">
<Grid>
<WpfToolkit:PropertyGrid Name="Grid" />
</Grid>
</Window>

现在我收到了未找到程序集“WPFToolkit.Extended”的错误。我在我的应用程序中包含了对 dll Xceed.Wpf.Toolkit.dll 的引用。

为什么它不起作用?我是否需要包含更多引用资料或可能是什么错误?
感谢您的任何回应。

最佳答案

我可以解决问题。我的错是我没有解锁包含 dll 的 zip 文件。在此之后,我必须将标记中命名空间的源更改为 uri。在最终标记下方:

<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:WpfToolkit="http://schemas.xceed.com/wpf/xaml/toolkit"
Title="MainWindow" Height="350" Width="525">
<Grid>
<WpfToolkit:PropertyGrid Name="Grid" />
</Grid>
</Window>

关于WPF:使用 WPF 扩展中的 PropertyGrid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15987512/

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