How do I completely replace the content of a WPF button with a graphic path? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T21:11:37Zhttp://stackoverflow.com/feeds/question/403629http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/403629/how-do-i-completely-replace-the-content-of-a-wpf-button-with-a-graphic-path1How do I completely replace the content of a WPF button with a graphic path?Ryan ONeill2008-12-31T17:57:15Z2008-12-31T18:15:32Z
<p>I've deconstructed a standard WPF button using Blend and have managed to create a nicely styled button, but I cannot figure out how to make the path fill the interior of the button space (the button width and height). I am also not sure if I need to specify ContentPresenter or even if it is correct. I am after the text in the middle of the button (as normal) but with my graphic path behind it.</p>
<p>Can anyone give me feedback on how to accomplish this? The style is defined as;</p>
<pre><code> <ControlTemplate x:Key="CurvedButton" TargetType="{x:Type Button}">
<Grid>
<Path Fill="#ff951c1f" Data="F1 M 64,16 C 64,24 56,31 48,31 L 15,31 C 7,31 0,24 0,16 C 0,7 7,0 15,0 L 48,0 C 56,0 64,7 64,16 Z" />
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" Width="Auto" />
</Grid>
</ControlTemplate>
</code></pre>
<p>The usage of this button is;</p>
<pre><code><StackPanel>
<Button Template="{StaticResource CurvedButton}" FontFamily="MS Trebuchet" FontSize="40" Width="200" Height="120" Foreground="Black">XXXXXXXXXXX</Button>
</StackPanel>
</code></pre>
<p>When all is done, it should just look like a curvy red button.</p>
<p>Thanks in advance</p>
<p>Ryan</p>
http://stackoverflow.com/questions/403629/how-do-i-completely-replace-the-content-of-a-wpf-button-with-a-graphic-path/403675#4036755Answer by w4g3n3r for How do I completely replace the content of a WPF button with a graphic path?w4g3n3r2008-12-31T18:15:32Z2008-12-31T18:15:32Z<p>There are a couple things you can do to get the results you're looking for.</p>
<p>Place the path in a viewbox and have it stretch to fill:</p>
<pre><code><ControlTemplate x:Key="CurvedButton" TargetType="{x:Type Button}">
<Grid>
<Viewbox Stretch="Fill">
<Path Fill="#ff951c1f" Data="F1 M 64,16 C 64,24 56,31 48,31 L 15,31 C 7,31 0,24 0,16 C 0,7 7,0 15,0 L 48,0 C 56,0 64,7 64,16 Z" />
</Viewbox>
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" Width="Auto" />
</Grid>
</ControlTemplate>
</code></pre>
<p>Use a border instead of a path:</p>
<pre><code><ControlTemplate x:Key="CurvedButton" TargetType="{x:Type Button}">
<Grid>
<Border CornerRadius="40" Background="#ff951c1f">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" Width="Auto" />
</Border>
</Grid>
</ControlTemplate>
</code></pre>