Tagged Questions

1
vote
2answers
112 views

Resize circle button with draging like in designer window

I have a circular button, which I want to resize (similarly to how you do it in the design window). If this was a rectangle I can attach some thumbs or adorners around the edges and keep track of the ...
1
vote
3answers
4k views

WPF: Create half elliptical button

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 ...
0
votes
1answer
1k views

wpf style ellipse button Fill property Image

Hello I am trying to create a RadialButton style with an image and I want that image (source) to be variable. <Style x:Key="RadialButton1" TargetType="Button"> <Setter ...
0
votes
1answer
342 views

Scaled ellipse over button, button not clickable

I'm scaling an ellipse in an animation with the following code: ScaleTransform myScTransform = new ScaleTransform(); TransformGroup myTransGroup = new TransformGroup(); ...