在简单的“ Hello World” UWP
项目中添加外部dll会产生以下屏幕快照中显示的两个错误:
注意:有很多关于此类错误的在线帖子,但大多数涉及复杂的情况(添加图像,使用Telerik,ComponentOne工具等),但这只是一个简单的文本项目,目的只是为了测试为什么要添加一个没有执行任何图像处理等操作的类库中的dll导致了此问题。
错误 [点击图片以使其更具可读性]:
更新:
我的MainPage.Xaml
文件:
<Page
x:Class="UWP_Test4.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:UWP_Test4"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
<Button Content="Button" HorizontalAlignment="Left" Margin="695,614,0,0" VerticalAlignment="Top" Click="Button_Click"/>
<RichEditBox Name="rtbTest" HorizontalAlignment="Center" Height="532" Margin="0,10,0,0" VerticalAlignment="Top" Width="1480"/>
</Grid>
</Page>