Ever look at a project and wonder how they got a epic button instead of the every day average one? There is an extremely easy way to do this in Expression Blend. I’m also going to show the XAML on how to do it by hand however. Here is a normal button and an ellipse. XAML: <Ellipse Fill="White" Stroke="Black" Margin="139,68,0,0"
HorizontalAlignment="Left" VerticalAlignment="Top" Width="105" Height="105"/>
<Button Margin="248,68,238,0" Content="Button"
VerticalAlignment="Top" Height="105"/>
The button acts like a button but I want the ellipse to act like a button. In Expression Blend, just...