Powershell 包 uri 对象
我正在尝试创建一个包 ui,引用 powershell 中程序集文件内的 xaml 资源。读完这篇文章后 我尝试这样做:
$resource = new-object system.uri("pack://application:,,,/WPFResource;component/test.xaml")
我收到一个错误,指出它需要一个端口,因为有两个冒号。
有人可以请建议吗?
I'm trying to create a pack ui referencing a xaml resource inside of an assembly file in powershell. After reading this post I tried to do this:
$resource = new-object system.uri("pack://application:,,,/WPFResource;component/test.xaml")
The I get an error noting that it is expecting a port since there are two colons.
Can anyone please advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以采用以下两种方法之一来解决此问题。一种是加载并初始化 WPF 基础结构:
另一种方法是手动注册包协议:
You can go about this one of two ways. One is to load up and init the WPF infrastructure:
The other way is to manually register the pack protocol: