You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
977 B
C#
49 lines
977 B
C#
1 month ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
using System.ComponentModel;
|
||
|
|
||
|
namespace Mesnac.UI.ToolBox
|
||
|
{
|
||
|
public class ToolBoxCategory : ToolBoxItem
|
||
|
{
|
||
|
#region fields
|
||
|
private ToolBoxItemCollection _items = null;
|
||
|
private Boolean _isOpen = false;
|
||
|
#endregion
|
||
|
|
||
|
#region Properties
|
||
|
|
||
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
|
||
|
public ToolBoxItemCollection Items
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return _items;
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
_items = value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public Boolean IsOpen
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return _isOpen;
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
_isOpen = value;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
public ToolBoxCategory()
|
||
|
{
|
||
|
_items = new ToolBoxItemCollection();
|
||
|
}
|
||
|
}
|
||
|
}
|