I dont think this is quite possible, but its worth a shot to see what you guys say. I am trying to create a half-elliptical button in C# (not XAML, that might through another curve ball). If I wanted a pre-determined size for the buttons, I would just use images or something like that, but thats not the case since the size changes. Here is more detail:
I have an ellipse with x-radius and y-radius (or width and height, respectfully multiplied by 2).
I want two button to fill the entire ellipse, each taking up one half of the ellipse.
I dont want rectangular button that extend beyond the ellipse and get clipped to the parent, I want actual elliptical buttons, except only one-half of an ellipse per button.
If this cant be accomplished using buttons, but using some other control, then I'd like that control to be able to act like a button.
Any help or advice or pointers would greatly help.