mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
2.0.4
This commit is contained in:
@@ -27,6 +27,7 @@ using System.Drawing;
|
||||
using System.Data;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using System.Windows.Forms.Design;
|
||||
using System.IO;
|
||||
|
||||
namespace CUEControls
|
||||
@@ -402,4 +403,19 @@ namespace CUEControls
|
||||
public TreeNode node;
|
||||
public FileSystemInfo[] files;
|
||||
}
|
||||
|
||||
[ToolStripItemDesignerAvailability(ToolStripItemDesignerAvailability.ToolStrip | ToolStripItemDesignerAvailability.StatusStrip)]
|
||||
public partial class ToolStripCheckedBox : ToolStripControlHost
|
||||
{
|
||||
public ToolStripCheckedBox()
|
||||
: base(new CheckBox())
|
||||
{
|
||||
}
|
||||
|
||||
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
|
||||
public CheckBox MyCheckBox
|
||||
{
|
||||
get { return (CheckBox)this.Control; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user