在 XAML 中获取产品名称

Get product name in XAML

我正在开发 WPF 桌面应用程序,并希望应用程序的产品名称显示为 MainWindow 的标题。我想知道 xaml 中是否有办法将产品名称显示为标题。我不想要 vb.net 或 C# 代码,我只想要 XAML 代码。

您可以添加对 System.Windows.Forms.dll 的引用并使用静态 Application.ProductName 属性:

<Window ...
       xmlns:winforms="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
       Title="{x:Static winforms:Application.ProductName}">