我有以下代码: XAML:
<UserControl x:Class="RBSoft.WPF.RedConsoleViewer"
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="355" d:DesignWidth="691" Name="ConsoleUI_Control" KeyDown="ConsoleUI_Control_KeyDown">
<Grid Name="_Layout">
<Rectangle Name="BackgroundLayout">
<!--...-->
</Rectangle>
</Grid>
</UserControl>
代码:
public Rectangle IBackground
{
get { return this.BackgroundLayout; }
set { this.BackgroundLayout = value; }
}
我要做的是从XAML编辑器中编辑矩形(BackgroundLayout),如下所示:
<Window x:Class="LifeEnvironment.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="1064" Width="910"
xmlns:my="clr-namespace:RBSoft.WPF;assembly=RBSoft.WPF"
WindowStyle="None"
WindowState="Maximized"
WindowStartupLocation="CenterScreen">
<Grid>
<my:userControlTest>
<my:userControlTest.IBackground>
<Background ...>
</my:userControlTest.IBackground>
</my:userControlTest>
</Grid>
</Window>
但是我无法访问这个,我需要做什么?
答案 0 :(得分:1)
正确的方法是使用用户控件包装Rectangle,如下所示:
<UserControl x:Class="RBSoft.WPF.RedConsoleViewer" ...>
<Grid Name="_Layout">
<UserControl Name="BackgroundLayout">
<Rectangle .../>
</UserControl>
</Grid>
</UserControl>
然后,更改Content
属性而不是对象本身,这样就不会丢失引用(BackgroundLayout
):
public Rectangle IBackground
{
get { return (Rectangle)this.BackgroundLayout.Content; }
set { this.BackgroundLayout.Content = value; }
}
最后,它会起作用:
<my:userControlTest>
<my:userControlTest.IBackground>
<Background ...>
</my:userControlTest.IBackground>
</my:userControlTest>
答案 1 :(得分:0)
为了能够访问XAML中的控件属性,您需要将其作为依赖属性。
我认为(至少从我所看到的)一个更常见的方法来做你想要做的就是使用一种控制内部矩形背景的“常见”风格。
修改强>
public static readonly DependencyProperty IBackgroundProperty = DependencyProperty.Register("IBackground", typeof(Rectangle), typeof(NameOfYourUserControl));
public Rectangle IBackground
{
get { return (Rectangle)GetValue(IBackgroundProperty); }
set { SetValue(IBackgroundProperty, value); }
}
更改为依赖项属性将使您的XAML编译,但是,您仍然必须在用户控件中处理它。
当您使用它时,您正在尝试将背景设置为矩形类型的属性! 这显然是行不通的。您必须实例化您的属性 - 矩形:
<my:userControlTest>
<my:userControlTest.IBackground>
<Rectangle Fill="Orange"/>
</my:userControlTest.IBackground>
</my:userControlTest>