如何在VS2015 WPF中获得解决方案中的项目版本?

时间:2016-05-08 08:54:34

标签: wpf visual-studio xaml version projects-and-solutions

我在我的解决方案中设置了项目和WPF项目。

我希望WPF项目的标题会显示安装项目的版本吗?

有没有办法只使用xaml编码?

谢谢!

1 个答案:

答案 0 :(得分:0)

试试这个:

public string VersionApp
{
    get 
    {
        if (ApplicationDeployment.IsNetworkDeployed)
            return string.Format("v{0}", ApplicationDeployment.CurrentDeployment.CurrentVersion.ToString(4));
        else
            return "v -not available-";
    }
}