Users Pricing

forum

Home Forums C# - load xaml file at runtime – MindStick

C# - load xaml file at runtime

Anonymous User 3135 23 Sep 2013

I have a WPF application in C#.

I have a MainWindow class which inherits from a System.Windows.Window class.

Next I have an xaml file on my disk which I want to load at runtime:

<Window x:Class="MainWindow"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    Title="I want to load this xaml file">

</Window>                                      

How can I load that xaml file at runtime? In other words, I want my MainWindow class to use exactly the mentioned xaml file, so I do not want to use the method AddChild of the MainWindow because it adds a child to the window, but I want to replace also that Window parameter. How can I achieve this?


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md