
So I am trying to add controls like TextBox, ComboBox, and a DateTime control to the Ribbon. I started using the controls in the editor namespace and this is what I have so far.
<ribbon:Group Label="Notes>
<ribbon:StackPanel>
<editors:TextBox Width="150" ribbon:RibbonControlServcie.Label="Name" />
<ribbon:ComboBox Width="150" ribbon:RibbonControlServcie.Label="Folder" />
</ribbon:StackPanel>
</ribbon:Group>
I can see the Name label next to the TextBox in the Ribbon but I do not see the Folder lable next to the ComboBox. I realize that this is becasue the RibbonControlServcie.Label only works on controls in the editors namespace, correct? The ComboBox needs to display a list of strings so what are my options for getting the label next to the ComboBox like the other controls? I realize I can just add a normal TextBlock to the left of the CombBox to achieve this but I wanted to make sure there was not an Actipro control that would do the same. Why is there not a ComboBox or something like a StringsEditBox control in the editors namespace?
Thanks,
-eric