System.IO.IOException:'无法找到资源'mainwindow.xaml'。

时间:2018-09-02 15:33:20

标签: c#

我运行页面样式的应用程序

#moduleMap["some module"].someImport

错误消息如下:

<Page x:Class="WpfApp1.Page1"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
  xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
  xmlns:local="clr-namespace:WpfApp1"
  mc:Ignorable="d" 
  d:DesignHeight="450" d:DesignWidth="800"
  Title="Page1">
<Page.Resources>
  ......
</Page>

知道发生了什么吗?

2 个答案:

答案 0 :(得分:0)

在App.xaml文件中编辑startupUri。 在您的情况下,您提到您正在运行页面样式的应用程序,因此我假设“ WpfApp1.Page1”是启动页面,因此 StartupUri =“ WpfApp1 / Page1.xaml”

答案 1 :(得分:0)

您可能将页面移动到一个文件夹中,因此您可能创建了一个名为 Views 的文件夹,然后将该页面移动到其中。因此,您转到 App.xaml 并找到 StartupUri 并在启动时将 "/Views/Page1.xaml" 放在一行中,例如:

StartupUri="/Views/Page1.xaml"