WPF IOException Cannot locate resource

C#WpfIoexception

C# Problem Overview


I have a WPF application.

The page that opens when the app runs in MainWindow.xaml, as set in the StartupUri attribute of the App.xaml file. This page opens fine.

However, if I try to open any other windows using the Show or ShowDialog method I get an IOException in the InitializeComponent method saying "Cannot locate resource 'Window1.xaml'" (or whatever the file is called). This happens with every single window I create. I've searched online but all the solutions seem to say "make sure the StartupUri attribute of the App.xaml is correct" and mine is, hence MainWindow opening.

Any idea what's going on?

C# Solutions


Solution 1 - C#

The above did not work for me but what did work was as follows. Open up the App.xaml

<Application x:Class="dotDiff2013.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             StartupUri="MainWindow.xaml">
    <Application.Resources>
    </Application.Resources>
</Application>

You then need to change the start-up URI to the fully qualified one. In my case I had moved my MainWindow.xaml to a folder called 'Main', so changing the above URI to

StartupUri="Main/MainWindow.xaml"

Solved my issue.

Solution 2 - C#

I had this problem when the "AssemblyName" and the "Default Namespace" on the project settings had the same value. Changing the AssemblyName to something else solved the problem.

Solution 3 - C#

If you open up the code-behind for the Window1.xaml file (i.e. Window1.xaml.cs), you can right click on the InitializeComponent method call and select "Goto Definition". There will be code like the following:

/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
    if (_contentLoaded) {
        return;
    }
    _contentLoaded = true;
    System.Uri resourceLocater = new System.Uri("/TestApp;component/mainwindow.xaml", System.UriKind.Relative);
        
    #line 1 "..\..\..\MainWindow.xaml"
    System.Windows.Application.LoadComponent(this, resourceLocater);
        
    #line default
    #line hidden
}

If the Uri in the code above is not correct, then you would receive that error you got.

In addition, if the Build Action of the XAML file is not set to "Page", then you would also have that problem. To check this, you can select the file in the Solution Explorer and press F4.

Finally, if something is renaming the XAML file as part of your build process (such as obfuscation), then again you would receive that error.

Other than that, I would try a "Clean Solution" and "Rebuild Solution" to ensure the file with the InitializeComponent definition is rebuilt.

Solution 4 - C#

I had the same issue. The reason for me because I moved the MainWindow.xaml without adjusting the the App.xaml. If you move your MainWindow.xaml for example into a folder called "UI" you have to adjust following line in the App.xaml

         StartupUri="UI/Mainwindow.xaml"

Solution 5 - C#

<Application x:Class="RuleSetEditor.App"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         StartupUri="/Forms/RuleEditor.xaml">
    <Application.Resources>
     
    </Application.Resources>
</Application>

here /Forms/ is my folder structure in my project. Make sure this is mentioned in app.xaml

Solution 6 - C#

This IOException can be caused by assembly name ambiguity. For example, I named an assembly myproduct.dll, then added a reference to it in the WPF app myproduct.exe. This gave the IOException for mainwindow.xaml.

Solution 7 - C#

My issue was quite trivial: The Build Action of my file was set to "None".

If you don't set it to "Resource" this will be the exception.

Solution 8 - C#

Also if you happen to override OnStartup(StartupEventArgs e) in your app.xaml.cs you must also have to remove the line StartUri="mainwindow.xaml" from app.xaml. Otherwise, you will get "Cannot locate resource 'MainWindow1.xaml'" as well in this case.

Solution 9 - C#

Check in App.xaml the StartupUri tag (if you moved the MainWindow).

Solution 10 - C#

Even I had the same problem, first I went on digging up the issue still it was pointing to InitializeComponent(); I finally found out that I updated Resources.resx file contents, but in my application folder I did not updated it. So later copied the new resx file and tried it. Now it works fine.

Just anyone in case come with this issue look at this once.

Solution 11 - C#

To resolve this issue please go to App.Xaml and change the StsrtUpUri which you want to run when the application run. enter image description here

Change the startup Uri enter image description here

And if the Xaml is inside any Folder you can add as follow

StartupUri="View/MyView.xaml"

Solution 12 - C#

If this helps anyone, I was facing this problem without any obvious problem in the resource path. One thing was that I was using this in a WPF Control Library which was then referenced by the main application assembly.

I simply changed my simple URLs (i.e. file names) to pack:// URIs as everything started to work correctly. Like this:

Source="pack://application:,,,/MyLib;component/SettingsPage.xaml"

instead of:

Source="SettingsPage.xaml"

Solution 13 - C#

Find the file app.g.cs and edit it in Notepad, in Visual Studio it will ask you to reload the file, click OK and voila​

Solution 14 - C#

Make sure you haven't accidentally moved the file MainWindow.xaml Mine had somehow got dragged into Views by mistake - oops

Solution 15 - C#

Same issue but yet another solution:

For me my assembly name and default namespace were the same but different from the project name. I actually updated the default namespace and assembly name to match the new project name and it fixed it.

Solution 16 - C#

I noticed this problem after I localised my application. I ended up with a satellite resource which I did not include in my installer script. So while it worked in Visual Studio, building the installer separately caused this problem.

Including the satellite dll did the trick.

Solution 17 - C#

You may have renamed your namespace globally (entire project/solution etc.) or locally, but your solution obj\Debug folder some content (xaml classes, ending w/ [original_xaml_file_name].g.i.cs) did not take your changes. Next time make sure select "Entire Solution ( Including External Items )" if this was your case.

Solution 18 - C#

Simply go to Build and Then "Rebuild" and "Clean"

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionlace.johnView Question on Stackoverflow
Solution 1 - C#MoonKnightView Answer on Stackoverflow
Solution 2 - C#DennieView Answer on Stackoverflow
Solution 3 - C#CodeNakedView Answer on Stackoverflow
Solution 4 - C#gosuaView Answer on Stackoverflow
Solution 5 - C#dotnetavalancheView Answer on Stackoverflow
Solution 6 - C#user1130316View Answer on Stackoverflow
Solution 7 - C#Luca FrancesconView Answer on Stackoverflow
Solution 8 - C#atprofView Answer on Stackoverflow
Solution 9 - C#user1579553View Answer on Stackoverflow
Solution 10 - C#Sujith H SView Answer on Stackoverflow
Solution 11 - C#Debendra DashView Answer on Stackoverflow
Solution 12 - C#dotNETView Answer on Stackoverflow
Solution 13 - C#killo9rammView Answer on Stackoverflow
Solution 14 - C#Simon_WeaverView Answer on Stackoverflow
Solution 15 - C#joshcomleyView Answer on Stackoverflow
Solution 16 - C#Charlie SaltsView Answer on Stackoverflow
Solution 17 - C#Sam SaarianView Answer on Stackoverflow
Solution 18 - C#Maximiliano LedesmaView Answer on Stackoverflow