首页 > 解决方案 > C# WPF 中的占位符文本框 - 无法绑定 DepedencyProperty

问题描述

我试图用一些可变的占位符文本构建我的 TextBox。但是 Visual Brush - Label 中没有使用属性“PlaceholderText”。

占位符文本<Label Content="{Binding PlaceholderText}" Foreground="LightGray" />始终为空。

当我使用 中的绑定时,绑定有效。我尝试将绑定用作 Text:<TextBox Text="{Binding PlaceholderText}" >并且效果很好。

为什么不在里面<VisualBrush><Label Content="...">...

我希望有一个人可以帮助我。

<TextBox x:Class="CustomerPro.Common.Controls.PlaceholderTextBox"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:CustomerPro.Common.Controls"
             mc:Ignorable="d" 
             d:DesignHeight="50" d:DesignWidth="800" Name="phTextBox">
    <TextBox.Style>
        <Style TargetType="{x:Type TextBox}">
            <Style.Resources>
                <VisualBrush x:Key="PHBoxBackground" AlignmentX="Left" AlignmentY="Center" Stretch="None">
                    <VisualBrush.Visual>
                        <Label Content="{Binding PlaceholderText}" Foreground="LightGray" />
                    </VisualBrush.Visual>
                </VisualBrush>
            </Style.Resources>
            <Style.Triggers>
                <Trigger Property="Text" Value="">
                    <Setter Property="Background" Value="{StaticResource PHBoxBackground}" />
                </Trigger>
                <Trigger Property="Text" Value="{x:Null}">
                    <Setter Property="Background" Value="{StaticResource PHBoxBackground}" />
                </Trigger>
                <Trigger Property="IsKeyboardFocused" Value="True">
                    <Setter Property="Background" Value="White" />
                </Trigger>
            </Style.Triggers>
        </Style>
    </TextBox.Style>
</TextBox>
    public partial class PlaceholderTextBox : TextBox
    {
        #region PlaceholderText

        /// <summary>
        /// Gets or sets the PlaceholderText which is displayed next to the field
        /// </summary>
        public String PlaceholderText
        {
            get { return (String)GetValue(PlaceholderTextProperty); }
            set { SetValue(PlaceholderTextProperty, value); }
        }

        /// <summary>
        /// Identified the PlaceholderText dependency property
        /// </summary>
        public static readonly DependencyProperty PlaceholderTextProperty = DependencyProperty.Register("PlaceholderText", typeof(string), typeof(PlaceholderTextBox), new PropertyMetadata("Type some Text"));

        #endregion


        public PlaceholderTextBox()
        {
            InitializeComponent();
            this.phTextBox.DataContext = this;

        }
    }

标签: c#wpfxaml

解决方案


您需要通过 " ElementName" 进行绑定,但这在以下内容中进行了更详细的说明Resources

<Label 
    Content="{Binding Source={x:Reference phTextBox}, Path=PlaceholderText}"
            Foreground="LightGray" />

另请参阅msdn 论坛


推荐阅读