I want to change Button drawing based on button size using XAML. I know it is possible using c# code not sure about XAML Thanks
Update : my code is like
<Grid Width="60" Height="60">
<Ellipse Width="57" Height="57" StrockThickness="1">
</Ellipse>
</Grid>
I am applying above style to Button control. but here Width/Height is hard coded. I want it dynamically design time. so when I increase/decrease button size ellipse become accordingly
Thanks again