如何使用自定义内容定义UserControl?

时间:2011-07-22 21:34:22

标签: c# .net wpf xaml

我想定义我的自定义装饰器,其中包含用户内容。但是当我尝试设置某个控件的名称时,它总是会失败。尝试这样做时,我总是得到这个例外:

  

无法在元素“Button”上设置Name属性值'butt'。 “按钮”   是在'UserControl1'元素的范围内,它已经有了一个名字   在另一个范围内定义时注册。

我不明白为什么会这样。这是代码:

<UserControl x:Class="WpfApplication5.UserControl1"
             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"
             x:Name="control">
    <ContentPresenter Content="{Binding ElementName=control, Path=DataContext}" />
</UserControl>

<Window x:Class="WpfApplication5.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:WpfApplication5"
        Title="MainWindow" Height="350" Width="525">
    <local:UserControl1>
        <local:UserControl1.DataContext>
            <Button x:Name="butt" />
        </local:UserControl1.DataContext>
    </local:UserControl1>
</Window>

如何正确地做到这一点?

2 个答案:

答案 0 :(得分:0)

使用DataContext =&#34; {Binding ElementName = butt}&#34;代替。或者如果是dot-net 4,请使用x:参考:

<local:UserControl1 DataContext="{Binding ElementName=butt}">

或者

<local:UserControl1 DataContext="{x:Reference butt}">

然后,您可以在窗口中定义按钮以执行您可能尝试执行的绑定。

答案 1 :(得分:0)

你不能在UserControls中命名元素,有人认为这是一个bug,但我不知道是否是这种情况,无论哪种方式,这都行不通。您可以将Button声明为Window的资源,然后通过StaticResource插入,然后该名称将不会在窗口类中注册为字段。

无论哪种方式,你真的需要这个名字吗?

修改:另请参阅this question.