Package.InstalledPath 属性

定义

获取当前包的原始安装文件夹中当前包的路径。

public:
 property Platform::String ^ InstalledPath { Platform::String ^ get(); };
winrt::hstring InstalledPath();
public string InstalledPath { get; }
var string = package.installedPath;
Public ReadOnly Property InstalledPath As String

属性值

String

Platform::String

winrt::hstring

当前包的原始安装文件夹中当前包的路径。

Windows 要求

设备系列
Windows 10, version 2004 (在 10.0.19041.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v10.0 中引入)

注解

还有其他几种方法可以引用包中的文件。

  • 只需以“/”开头的 URI 即可引用包根目录: <img src="/file.png" alt="" />
  • 可以使用“ms-appx:///”协议: <img src="ms-appx://packageFullName/file.png" alt="" />
  • 还可以省略包名称,让系统填充域: <img src="ms-appx:///file.png" alt="" />

有关如何引用应用包中的文件的详细信息,请参阅 URI 方案和从 XAML 标记和代码引用图像或其他资产

适用于

另请参阅