具有自定义属性的用户控件 [英] User control with custom properties

查看:39
本文介绍了具有自定义属性的用户控件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试创建一个 UserControl,它是图形项的图例,我已经定义了它,所以它有一个带有图形名称的标签,一个复选框定义我们是否显示它以及一个带有图形颜色的矩形.

I'm trying to create a UserControl which is a legend of a graph item, I've defined it so it has a label with the graph name, a check box which define whether we show it or not and a rectangle with the graph color.

xaml 定义如下:

<UserControl x:Class="Resources.LegendItem"
             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">
    <UserControl.Template>
        <ControlTemplate>
            <StackPanel Margin="1,0,0,0" Orientation="Horizontal">
                <CheckBox Name="cb" IsChecked="{TemplateBinding IsGraphVisible}" >
                    <StackPanel Margin="1,0,0,0" Orientation="Horizontal">
                        <Rectangle Name="rec" RadiusX="2" RadiusY="2" Height="10" Width="10" />
                        <Label Name="lab" Content="{TemplateBinding GraphName}" />
                    </StackPanel>
                </CheckBox>
            </StackPanel>
        </ControlTemplate>
    </UserControl.Template>
</UserControl>

和cs文件是:

namespace Resources
{
    public partial class LegendItem : UserControl
    {
        public static readonly DependencyProperty IsGraphVisibleProperty = DependencyProperty.Register("IsGraphVisible", typeof(Boolean), typeof(LegendItem));
        public static readonly DependencyProperty GraphNameProperty = DependencyProperty.Register("GraphName", typeof(String), typeof(LegendItem));

        public bool IsGraphVisible
        {
            get { return (bool)GetValue(IsGraphVisibleProperty); }
            set { SetValue(IsGraphVisibleProperty, value); }
        }

        public string GraphName
        {
            get { return (string)GetValue(GraphNameProperty); }
            set { SetValue(GraphNameProperty, value); }
        }

        public LegendItem()
        {
            InitializeComponent();
        }

    }
}

但是当我编译它时,我收到一个错误在类型 'Control' 上找不到静态成员 'IsGraphVisibleProperty'."任何帮助将不胜感激.

But when I compile it, I get an error "Cannot find the static member 'IsGraphVisibleProperty' on the type 'Control'." Any help would be appreciated.

推荐答案

您根本不需要模板.UserControl 允许直接声明 XAML.您不能在 UserControl 中设置模板:

You do not need a template at all. UserControl allows the XAML to be declared directly. You can't set the template in a UserControl:

<UserControl x:Class="Resources.LegendItem" x:Name="MyControl"
         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">

        <StackPanel Margin="1,0,0,0" Orientation="Horizontal">
            <CheckBox Name="cb" IsChecked="{Binding ElementName=MyControl, Path=IsGraphVisible}" >
                <StackPanel Margin="1,0,0,0" Orientation="Horizontal">
                    <Rectangle Name="rec" RadiusX="2" RadiusY="2" Height="10" Width="10" />
                    <Label Name="lab" Content="{Binding ElementName=MyControl, Path=GraphName}" />
                </StackPanel>
            </CheckBox>
        </StackPanel>
</UserControl>

这篇关于具有自定义属性的用户控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆