我正在使用MahApps.Metro MetroWindow
。
我按照以下方式分配我的标题:
Title="My Application"
但它正在显示标题为"我的申请"。
我通过将Title
设置为"我的"来进行交叉验证,但它显示了" MY"。
希望我需要设置一些属性来解决这个问题。
答案 0 :(得分:4)
只需将窗口的TitleCaps属性设置为false
即可<Controls:MetroWindow x:Class="MahApps.Metro.Simple.Demo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Controls="http://metro.mahapps.com/winfx/xaml/controls"
Title="MainWindow"
Height="200"
Width="600"
TitleCaps="False">
应该是它。