Is it possible to display a text box in the drop down of a split button. I assume it is possible from the example of adding a custom element to the RadMenu. However, it is not clear how to.
My attempt at doing this
Thanks
Peter
My attempt at doing this
| RadMenuContentItem contentTextBox = new RadMenuContentItem(); |
| RadTextBoxElement RadtextBoxNoteElement = new RadTextBoxElement(); |
| RadtextBoxNoteElement.Size = new Size(139, 15); |
| contentTextBox.ContentElement = RadtextBoxNoteElement; |
| this.radSplitButton1.Items.Add(contentTextBox); |
I am using Q4 2006 SP1 version.
Thanks
Peter