Hello There,
Do you have any idea on these, I have ToolStrip Control drop in my Base Form.and in my inherited form.. the toolstrip editor will not inherited. is there any way to inherit also the editor of the toolstrip.
Thank you,
gja
Printable View
Hello There,
Do you have any idea on these, I have ToolStrip Control drop in my Base Form.and in my inherited form.. the toolstrip editor will not inherited. is there any way to inherit also the editor of the toolstrip.
Thank you,
gja
Not that I have found, and I have looked. I just added my "extra" buttons by code in the child form.
Code:tmiToolBar_EditRules = New ToolStripButton 'I keep a local ref to it, but you do not have to as long as you have a handler to it
With tmiToolBar_EditRules
.Alignment = ToolStripItemAlignment.Right
.Overflow = ToolStripItemOverflow.AsNeeded
.DisplayStyle = ToolStripItemDisplayStyle.Image
.Image = My.Resources.Common_EditDialog.ToBitmap
.ToolTipText = "Edit Notification Rules"
End With
toolDefault.Items.Add(tmiToolBar_EditRules)