How do I completely replace the content of a WPF button with a graphic path? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T21:11:37Z http://stackoverflow.com/feeds/question/403629 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/403629/how-do-i-completely-replace-the-content-of-a-wpf-button-with-a-graphic-path 1 How do I completely replace the content of a WPF button with a graphic path? Ryan ONeill 2008-12-31T17:57:15Z 2008-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> &lt;ControlTemplate x:Key="CurvedButton" TargetType="{x:Type Button}"&gt; &lt;Grid&gt; &lt;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" /&gt; &lt;ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" Width="Auto" /&gt; &lt;/Grid&gt; &lt;/ControlTemplate&gt; </code></pre> <p>The usage of this button is;</p> <pre><code>&lt;StackPanel&gt; &lt;Button Template="{StaticResource CurvedButton}" FontFamily="MS Trebuchet" FontSize="40" Width="200" Height="120" Foreground="Black"&gt;XXXXXXXXXXX&lt;/Button&gt; &lt;/StackPanel&gt; </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#403675 5 Answer by w4g3n3r for How do I completely replace the content of a WPF button with a graphic path? w4g3n3r 2008-12-31T18:15:32Z 2008-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>&lt;ControlTemplate x:Key="CurvedButton" TargetType="{x:Type Button}"&gt; &lt;Grid&gt; &lt;Viewbox Stretch="Fill"&gt; &lt;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" /&gt; &lt;/Viewbox&gt; &lt;ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" Width="Auto" /&gt; &lt;/Grid&gt; &lt;/ControlTemplate&gt; </code></pre> <p>Use a border instead of a path:</p> <pre><code>&lt;ControlTemplate x:Key="CurvedButton" TargetType="{x:Type Button}"&gt; &lt;Grid&gt; &lt;Border CornerRadius="40" Background="#ff951c1f"&gt; &lt;ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" Width="Auto" /&gt; &lt;/Border&gt; &lt;/Grid&gt; &lt;/ControlTemplate&gt; </code></pre>