英语翻译:
我在项目的VisualStudio环境中安装了SplashScreen.Fody
软件包,用户指南是将WPF UserControl添加到项目中,该项目生成了用于创建和管理SplashScreen的.xaml文件。只有到那时,我才选择另一个选项,并决定从项目及其包中删除.xaml文件。但是,现在,我在启动应用程序时收到此错误,即使删除文件和包后,我也无法理解为什么会发生此错误。
我该如何解决?
原始帖子:
要在Package SplashScreen.Fody上安装Visual Studio,请在UserControl WPF上创建文件,然后在SplashScreen上创建.xaml文件。删除所有文件后的独占文件。xamldal progetto e il relativo软件包。一个错误的文件或一个错误的文件,将文件包打包为成功的文件。来posso Risolvere吗?
答案 0 :(得分:0)
https://github.com/tom-englert/SplashScreen.Fody#how-to-use
要在应用程序中具有可动态设计的启动画面,只需将WPF UserControl添加到应用程序程序集,对其进行设计,然后将[SplashScreen]属性应用到它:
您可能会缺少这样的东西
[SplashScreen(MinimumVisibilityDuration = 4, FadeoutDuration = 1)]
public partial class MySplashScreen
{
public MySplashScreen()
{
InitializeComponent();
}
/// <summary>
/// Gets the file version info.
/// </summary>
public FileVersionInfo FileVersionInfo { get; } = FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location);
}