|
this.toolStripPanelItem1.UseStandardLayout = true;
this.toolStripPanelItem1.LayoutStyle = ToolStripLayoutStyle.VerticalStackWithOverflow;
this.toolStripPanelItem1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripLabel1,
new ToolStripControlHost(this.colorPickerUIAdv1),this.toolStripLabel2, new ToolStripControlHost(this.colorPickerUIAdv2)});
|
|
//Custom DropDown class to set ColorPickerAdv in dropdown
public class CustomDropDown : ToolStripDropDown
{
public CustomDropDown(ColorPickerUIAdv colorpicker)
{
this.Height = colorpicker.Height;
this.Items.Add(new ToolStripControlHost(colorpicker));
}
}
|
|
//Assign colorpicker to DropDown control of ToolStripSplitButton.
this.toolStripSplitButton1.DropDown = new CustomDropDown(this.colorPickerUIAdv1);
|