如何使用wpf中的超链接获取网络驱动器中的文件?
我有一个网络应用程序...我可以从网络驱动器获取 Excel 文件...使用
..所以我没有使用任何模拟。
我们有类似 WPF 的东西吗?
编辑: 我想在网络位置打开 Excel 文件...当用户单击链接或按钮时。另外,我不想使用任何模拟...因为我们不必在 a-href 的情况下进行模拟。
I have a web application...where I can get an excel file from network drive...using
..So I am not using any impersonation.
Do we have something similar to that in WPF ?
EDIT:
I want to open excel file in network location...when user click a link or button. Also, i dont want to use any impersonation...as we dont have to impersonate in case of a-href.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需将
Hyperlink
包含在TextBlock
中,并使用ValueConverter
来引用网络值。里面:View.xaml
valueConverter
,最后是App.xaml(或资源字典)里面的胶水......
Just include the
Hyperlink
inside aTextBlock
and use aValueConverter
to Reference To the network Value.inside: View.xaml
valueConverter
and lastly inside App.xaml ( or resource dictionary) the glue as it were...
使用此解决方案:如何在 XAML 中创建简单的超链接?
使按钮看起来像超链接。 (超链接并非在所有地方都有效。)
单击按钮时,执行如下操作:
Use this solution: How to make a simple hyperlink in XAML?
to make a button look like a hyperlink. (Hyperlinks don't work everywhere.)
When clicking the button, do something like this: