簡體   English   中英

WPF:Mahapps Metro 水印未顯示

[英]WPF: Mahapps Metro Watermark is not showing up

我正在開發一個程序,並且在設置中我希望水印告訴用戶他可以在那里插入什么。 我使用了 Mahapps Metro,但水印沒有出現,所以我創建了一個只有一個文本框的空白項目,但它仍然沒有出現。

我的代碼:

<Controls:MetroWindow x:Class="TestWPF.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:Controls="http://metro.mahapps.com/winfx/xaml/controls"
    xmlns:local="clr-namespace:TestWPF"
    mc:Ignorable="d"
    Title="MainWindow" Height="450" Width="800">

    <Grid Background="White">
        <TextBox Controls:TextBoxHelper.Watermark="TestWater" Height="25" Width="200"/>
    </Grid>
</Controls:MetroWindow>

結果:

在此處輸入圖像描述

(背景實際上是“小麥”,使文本框更明顯)

我錯過了什么,為什么它不起作用?

將此添加到您的 WPF 項目的 App.xaml 中。

<Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.xaml" />
                <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml" />
                <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Colors.xaml" />
                <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Accents/Blue.xaml" />
                <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Accents/BaseLight.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>

我已經嘗試過了,這在此之后工作正常。

Go 通過此處提供的文檔。

暫無
暫無

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

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