wpf 后退父目录
Posted springcloud
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wpf 后退父目录相关的知识,希望对你有一定的参考价值。
string rootPath = ""; string BaseDirectoryPath = AppDomain.CurrentDomain.BaseDirectory; rootPath = BaseDirectoryPath.Substring(0, BaseDirectoryPath.LastIndexOf("\\")); rootPath = rootPath.Substring(0, rootPath.LastIndexOf("\\")); rootPath = rootPath.Substring(0, rootPath.LastIndexOf("\\")); string path = rootPath + @"..\Resource\Echarts\echart.html";
or this method string url = AppDomain.CurrentDomain.BaseDirectory + @"..\..\Resource\Echarts\echart.html"; Web.Navigate(url);
以上是关于wpf 后退父目录的主要内容,如果未能解决你的问题,请参考以下文章
如何在 WPF WebBrowser 中使用“后退”和“前进”导航按钮事件?
用iframe后 点后退按钮时总是在潜套框里后退,如何让整个父页面整体后退呢?