System.IO.IOException:“找不到资源“views.buttonstylepage.xaml”。”

2022/4/21 6:19:47

本文主要是介绍System.IO.IOException:“找不到资源“views.buttonstylepage.xaml”。”,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

初学作为记录(事发场景):

  WPFDemo的程序集中,定义了一个Views文件夹,该文件夹放一些页面Page、UI层面的东西。用Frame空间做导航的时候,始终报一个错误   //   System.IO.IOException:“找不到资源“views.buttonstylepage.xaml”。”

代码:

private void Page1_Click(object sender, RoutedEventArgs e)
        {
            if(((Button)sender).Name == "Page1")
            {
                MyFrame.Navigate(new Uri("Page1.xaml", UriKind.Relative));  //  为程序集中,文件夹之外的页面,可以找得到
            }
            else if(((Button)sender).Name == "Page2")
            {
                MyFrame.Navigate(new Uri("Views.ButtonStylePage.xaml", UriKind.Relative));  //  为文件夹内的页面,找不到
       } 
    }

原因:

  就是文件夹访问页面,用的是 . 不是/,才导致出的错  "Views.ButtonStylePage.xaml"

结果:

  将代码改为:  MyFrame.Navigate(new Uri("Views/ButtonStylePage.xaml", UriKind.Relative));



这篇关于System.IO.IOException:“找不到资源“views.buttonstylepage.xaml”。”的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程