Moving MainWindow.xaml

后端 未结 2 1078
有刺的猬
有刺的猬 2021-01-07 18:28

I\'ve built a WPF app, which completely works now. However, to clean it up a bit I wish to move my MainWindow.xaml to the view folder I\'ve created. After I\'ve

相关标签:
2条回答
  • 2021-01-07 19:10

    You don't need to update class name in xaml file unless you have changed the namespace of your class. Most likely you haven't updated StartupUri for App.xaml. Change it to:

    StartupUri="view/MainWindow.xaml"
    

    from

    StartupUri="MainWindow.xaml"
    
    0 讨论(0)
  • 2021-01-07 19:19

    The answer of @Rohit Vats is quite good!

    However that's a good point to remember: you have to change all the absolute paths (in XAML) to your resources, prepending them by a / in order to indicate that these paths are relative to the root directory.


    Example:

    From <Image Source="Assets/Loading.gif">

    To <Image Source="/Assets/Loading.gif"> and so on.

    0 讨论(0)
提交回复
热议问题