【发布时间】:2013-05-06 17:30:58
【问题描述】:
我有一个想要放入 FixedDocument 的用户控件,但在此之前我需要更改标签的文本。我想我需要使用依赖属性。
这是简化的 XAML。
<UserControl x:Class="PrinterTest.TestControl"
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"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300"
DataContext="{Binding RelativeSource={RelativeSource Self}}">
<Grid>
<Label Content="{Binding LabelCaption}"
Height="24" HorizontalContentAlignment="Right" Name="lblCaption"
Width="140" />
</Grid>
</UserControl>
还有代码隐藏
public partial class TestControl : UserControl
{
public TestControl()
{
InitializeComponent();
}
public readonly static DependencyProperty
LabelCaptionDP = DependencyProperty.Register("LabelCaption",
typeof(string),
typeof(TestControl),
new FrameworkPropertyMetadata("no data"));
public string LabelCaption
{
get { return (string)GetValue(LabelCaptionDP); }
set { SetValue(LabelCaptionDP, value); }
}
在调用位中,我通过TestControl myControl = new TestControl(); 实例化
我做错了什么,因为我无法访问新控件副本中的属性?谢谢!
【问题讨论】:
-
感谢 LPL - 进行了这些命名约定更改。在我的调用代码中,我尝试了 UserControl TestControl = new TestControl(); (TestControl)TestControl.LabelCaptionProperty = "测试";但我得到一个 System.Windows.Controls.UserControl 不包含 LabelCaptionProperty 的定义,我在 Intellisense 中看不到任何内容。我在做什么蠢事?
标签: wpf user-controls dependency-properties