簡體   English   中英

Mahapps地鐵窗口標題

[英]Mahapps metro window title

我正在使用MahApps.Metro MetroWindow

我通過以下方式分配標題:

Title="My Application"

但它顯示的標題為“我的應用程序”。

我已經通過將“ Title ”設置為“我的”來交叉驗證了它,但是它顯示了“我的”。

希望我需要設置一些屬性屬性來解決此問題。

只需將窗口的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">

應該是這樣。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM