gpt4 book ai didi

c# - 添加 dll 引用

转载 作者:行者123 更新时间:2023-11-30 21:03:26 34 4
gpt4 key购买 nike

我在添加 dll 引用时遇到了一个奇怪的问题。我有一个 WPF 应用程序并正在尝试使用 WPF MDI 库:http://wpfmdi.codeplex.com/

如说明中所述(非常模糊),我在 VS2012 中右键单击引用,单击 Add reference.. , 点击 Browse..并添加了我下载的 dll。

接下来,我在窗口的 XAML 中添加了以下行:xmlns:mdi="clr-namespace:WPF.MDI;assembly=WPF.MDI"如说明中所述。

但是,在尝试添加 <mdi:MdiContainer> 时,将显示以下错误消息:

The type 'mdi:MdiContainer' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.

The name "MdiContainer" does not exist in the namespace "clr-namespace:WPF.MDI;assembly=WPF.MDI".

有什么想法吗?

编辑:

添加了我的 XAML 文件

<Window x:Name="..." x:Class="MyClass.MyClass"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mdi="clr-namespace:WPF.MDI;assembly=WPF.MDI"
Title="" WindowState="Maximized">
<Window.Resources>
<Style TargetType="TreeView">
<Setter Property="Padding" Value="0,0,20,0"/>
<Setter Property="BorderBrush" Value="Gray"/>
<Setter Property="BorderThickness" Value="0,0,5,0"/>
</Style>
</Window.Resources>
<mdi:MdiContainer></mdi:MdiContainer>
</Window>

最佳答案

项目位于 MDI Project似乎使用.Net 4 客户端配置文件。只需确保已使用 .Net Framework 4 运行时编译 WPF.MDI 项目。

关于c# - 添加 dll 引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12884408/

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