Is there a way possibly using a draw filter or creation filter to remove the drop down arrow that appears for the dropdowneditorbutton? I've looked for a property but haven't had any success. I only need this for one control. The reason is that I am using a different image for the button and this arrow is taking up too much of the editor. I've tried using a different style button such as just an editor button with a popup control container but then it becomes difficult to position the popup container in the correct spot which the drop down button does automatically.
Thanks for you help in advance.
Hi Derek,
Removing the arrow using a DrawFilter is possible, but this will not remove the space where the arrow would have been. So it sounds like what you really want to do is replace the arrow with a different image.
Is that right?
If so, is your image the same size as the dropdown arrow image?
If it is, then you could use a DrawFilter to replace the arrow with a different image. If not, then you probably need both a CreationFilter (to resize the button) and a DrawFilter (to replace the image).
The image is not the same size so it looks like I need to use both. Could you point me in the right direction as to what UIElement I need to modify for both the Draw and Creation filters?
Thanks Mike