DotNet 4.8.1 build of DotNetBar

This commit is contained in:
2025-02-07 10:35:23 -05:00
parent 33439b63a0
commit 6b0a5d60f4
2609 changed files with 989814 additions and 7 deletions

View File

@@ -0,0 +1,61 @@
using System.Collections;
using System.ComponentModel.Design;
namespace DevComponents.DotNetBar.Design
{
public class SuperTabItemDesigner : BaseItemDesigner
{
#region GetTabItem
protected virtual SuperTabItem GetTabItem()
{
return (Component as SuperTabItem);
}
#endregion
#region Verbs
public override DesignerVerbCollection Verbs
{
get
{
DesignerVerb[] verbs = new DesignerVerb[] { };
return (new DesignerVerbCollection(verbs));
}
}
#endregion
#region AssociatedComponents
public override ICollection AssociatedComponents
{
get
{
ArrayList c = new ArrayList(base.AssociatedComponents);
SuperTabItem tab = GetTabItem();
if (tab != null)
{
if (tab.AttachedControl != null)
c.Add(tab.AttachedControl);
}
return (c);
}
}
#endregion
#region ComponentChangeComponentAdding
protected override void ComponentChangeComponentAdding(object sender, ComponentEventArgs e)
{
}
#endregion
}
}