2

我创建了一个用户控件。它基本上是一个带有一些自定义属性的按钮。

public partial class CustomButton : Button {
    // My custom properties, constructor and events
}

每次我CustomButton在表单上添加它时,它的默认Text值都设置为“ customButtonX ”,其中 X 是 1、2、3,...

如何更改此值?我希望它是“ buttonX ”(X = 1、2、3...)。

编辑:当我通过设计视图在表单上添加按钮时,我希望技巧(或我必须做的任何事情)处于活动状态。CustomButton这意味着当我将 a从工具箱拖放到表单时,它的Text值应该是“ buttonX ”。

4

4 回答 4

4

默认值为“yourControlNameX”,这是正确的。但是您可以替换构造函数中的名称。

请注意,这只适用于运行时(而不是设计时)

public partial class CustomButton : Button {
    // My custom properties, constructor and events

    public CustomButton() 
    {  
         this.Text = this.Text.Replace("customButton ", "button");
    }
}
于 2012-08-06T07:17:18.673 回答
3

只需覆盖文本并在其中设置任何您想要的内容。

public partial class CustomButton  : Button {

    public override string Text
    {
        get
        {
            //return custom text
            return base.Text;
        }
        set
        {
            //modify value to suit your needs
            base.Text = value;
        }
    }
 }
于 2012-08-06T07:17:33.913 回答
3

当您将控件从工具箱拖到窗体时,会触发一些事件。在您的情况下,您必须订阅当控件的文本属性从 String.Empty 更改为默认名称时触发的那个并更改它。为此,您必须在将控件添加到表单之前获取公开这些事件的服务(IComponentChangeService 的实现)。这可以通过覆盖控件的 Site 属性来完成。修改您可以在此处找到的示例,这种代码应该可以工作:

    private IComponentChangeService _changeService;

    public override System.ComponentModel.ISite Site
    {
        get
        {
            return base.Site;
        }
        set
        {
            _changeService = (IComponentChangeService)GetService(typeof(IComponentChangeService));
            if (_changeService != null)
                _changeService.ComponentChanged -= new ComponentChangedEventHandler(OnComponentChanged);
            base.Site = value;
            if (!DesignMode)
                return;
            _changeService = (IComponentChangeService)GetService(typeof(IComponentChangeService));
            if (_changeService != null)
                _changeService.ComponentChanged += new ComponentChangedEventHandler(OnComponentChanged);
        }
    }

    private void OnComponentChanged(object sender, ComponentChangedEventArgs ce)
    {
        CustomButton aBtn = ce.Component as CustomButton;
        if (aBtn == null || !aBtn.DesignMode)
            return;
        if (((IComponent)ce.Component).Site == null || ce.Member == null || ce.Member.Name != "Text")
            return;
        if (aBtn.Text == aBtn.Name)
            aBtn.Text = aBtn.Name.Replace("customButton", "button");
    }
于 2012-08-06T09:43:20.337 回答
1

可能您可以使用 ControlDesigner 并在初始化后设置 Text 属性。

public class MultiDesigner : ControlDesigner
{
    public MultiDesigner()
    {

    }

    public override void InitializeNewComponent(IDictionary defaultValues)
    {
        base.InitializeNewComponent(defaultValues);

        ICommonControl control = this.Component as ICommonControl;
        control.Text = control.Tag.ToString();
    }
}

用..装饰你的控件

[Designer("MultiPuntoDeVenta.Controls.Tickets.Editors.Designer.MultiDesigner, MultiPuntoDeVenta.Controls")]
public class LabelBase<T> : KryptonLabel, ICommonControl where T : ICommonControl
{
.....
于 2018-02-07T06:07:34.227 回答