使用 webbrowser C# winform 实现文件夹资源管理器
我尝试使用网络浏览器创建文件夹资源管理器,但我遇到了一些问题,无法在网络上找到任何答案...所以我会感谢您的回答:
- 有人可以解释一下如何创建向上按钮(转到到父文件夹)?
- 如何像在 Windows 资源管理器中一样将资源管理器栏(左侧)添加到收藏夹或搜索?
- 如何实现撤消功能(取消删除文件和文件夹)
I' trying to use webbrowser to create a folder explorer and I have few problems that I could not find any answer on the web... so I’ll appreciate your answers:
- Can someone please explain how can I create the Up button (going to parent folder)?
- How can I the explorer bar (on the left) to favorites or search as in windows explorer?
- How can I implement the undo functionality (undelete files and folders)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会做什么拦截对 url 的调用并从应用程序注入数据。 这样您就可以编写 HTML 并显示您想要的任何功能。
这个代码项目 WebBrowser 控件也可能很有用。 如果它允许您处理导航栏上的按钮单击事件,我不会感到惊讶。
What I would do intercept calls to a url and inject the data from your application. That way you can write HTML and display whatever functionality you want.
This Code Project WebBrowser Control might be useful too. I wouldn't be surprised if it allows you to handle the button click events on the navigation bar.