此问题在此处已有答案:
Callback when dependency property receives xaml change(2个答案)
4年前关闭。
我有一个非常简单的用户控件,它显示一个等待动画,上面有一个文本:
<UserControl x:Class="VNegoceNET.Controls.PleaseWait"
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:VNegoceNET.Controls"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid x:Name="RootElement" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Label Grid.Row="0" Grid.RowSpan="3" Background="White" Content="" Opacity="0.8"/>
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Center"
Grid.Row="0" FontSize="18" Foreground="Black"
Margin="8" x:Name="Caption" Text="Loading..."/>
<local:SpinningWait Grid.Row="1"/>
</Grid>
</UserControl>
字符串
我想这样使用它:
<controls:PleaseWait Text="Jegg Robot"/>
型
我的问题是,它仍然显示“Loading...”而不是“Jegg Robot”,尽管我的Departments属性:
public partial class PleaseWait : UserControl
{
public PleaseWait()
{
InitializeComponent();
}
public static readonly DependencyProperty TextProperty = DependencyProperty.Register(
"Text", typeof(String), typeof(PleaseWait), new PropertyMetadata("Loading in progress..."));
public string Text
{
get => (string)this.GetValue(TextProperty);
set
{
Caption.Text = value;
this.SetValue(TextProperty, value);
}
}
}
型
我错过了什么?
2条答案
按热度按时间g6baxovj1#
WPF不使用DP(public string Text)的公共属性 Package 器,当从xaml(
<controls:PleaseWait Text="Jegg Robot"/>
)设置属性时,它直接使用SetValue()。因此不会调用setter中的代码。需要的是元数据中的propertyChangedCallback:
字符串
cczfrluj2#
您可以将
TextBlock
的TextProperty
绑定到PropertyChangedCallback
,而不是像前面提到的ASh那样使用PropertyChangedCallback
字符串