我用刻录引导程序编写了自己的安装程序UI。它有一个WPF前端。我有一个包含3个MSI pacakges的EXE。因此,当我尝试将其安装在没有足够空间的磁盘中时,如何在安装程序UI中显示错误消息对话框?如果有足够的磁盘空间,我是否可以使用回调?请指教。
答案 0 :(得分:2)
我正在考虑做同样的事情。
秘诀是读取和解析BootstrapperApplicationData.xml。 然后,您可以使用WixPackageProperties元素中的InstalledSize属性。此链接Getting Display Name from PackageID向您展示如何在运行时读取该文件。请注意,您必须将InstalledSize添加到相关结构中。
您可以选择检查磁盘空间与这些数字的总和,并在安装之前将其标记为用户。
这是我的部分代码的复制/粘贴:
using System.Collections.ObjectModel;
using System.Xml.Serialization;
public class PackageInfo
{
[XmlAttribute("Package")]
public string Id { get; set; }
[XmlAttribute("DisplayName")]
public string DisplayName { get; set; }
[XmlAttribute("Description")]
public string Description { get; set; }
[XmlAttribute("InstalledSize")]
public int InstalledSize { get; set; }
}
[XmlRoot("BootstrapperApplicationData", IsNullable = false, Namespace = "http://schemas.microsoft.com/wix/2010/BootstrapperApplicationData")]
public class BundleInfo
{
[XmlElement("WixPackageProperties")]
public Collection<PackageInfo> Packages { get; set; } = new Collection<PackageInfo>();
}
public static class BundleInfoLoader
{
private static readonly string bootstrapperApplicationData = "BootstrapperApplicationData.xml";
public static BundleInfo Load()
{
var bundleFolder = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
var path = Path.Combine(bundleFolder, bootstrapperApplicationData);
var xmlSerializer = new XmlSerializer(typeof(BundleInfo));
BundleInfo result;
using (var fileStream = new FileStream(path, FileMode.Open))
{
var xmlReader = XmlReader.Create(fileStream);
result = (BundleInfo)xmlSerializer.Deserialize(xmlReader);
}
return result;
}
}