我有一個用戶控件,我想把它放在一個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 =「Test」; 但我得到一個System.Windows.Controls.UserControl不包含LabelCaptionProperty的定義,我無法在Intellisense中看到任何東西。我在做什麼愚蠢的事情? – 2013-05-06 20:02:13