How to set WPF's Grid.RowDefinitions via Style - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T21:37:37Z http://stackoverflow.com/feeds/question/355420 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/355420/how-to-set-wpfs-grid-rowdefinitions-via-style 1 How to set WPF's Grid.RowDefinitions via Style David Schmitt 2008-12-10T08:31:32Z 2009-12-12T11:00:03Z <p>Hi!</p> <p>I'm using a couple of <code>Grid</code>s to format multiple <code>GridViewColumn.CellTemplate</code>s:</p> <pre><code>&lt;ListView SharedSizeScope="true"&gt; &lt;ListView.View&gt; &lt;GridView&gt; &lt;GridViewColumn&gt; &lt;GridViewColumn.CellTemplate&gt; &lt;DataTemplate&gt; &lt;Grid&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition SharedSizeGroup="foo" /&gt; &lt;!-- ... --&gt; </code></pre> <p>I tried to extract the <code>RowDefinition</code>s (which are the same for all columns) into a <code>Style</code>:</p> <pre><code>&lt;Style TargetType="{x:Type Grid}"&gt; &lt;Setter Property="RowDefinitions"&gt; &lt;Setter.Value&gt; &lt;RowDefinition SharedSizeGroup="foo" /&gt; &lt;!-- ... --&gt; </code></pre> <p>But the compiler complains:</p> <blockquote> <p>Error: The Property Setter 'RowDefinitions' cannot be set because it does not have an accessible set accessor.</p> </blockquote> <p>Which is kind of obvious, but not very helpful.</p> <p>How could I avoid specifying the row definitions multiple times (see also <a href="http://c2.com/cgi/wiki?DontRepeatYourself" rel="nofollow">Don't Repeat Yourself</a>) short of coding up a custom derivation of the <code>Grid</code>?</p> http://stackoverflow.com/questions/355420/how-to-set-wpfs-grid-rowdefinitions-via-style/355435#355435 1 Answer by Tomalak for How to set WPF's Grid.RowDefinitions via Style Tomalak 2008-12-10T08:41:45Z 2008-12-10T08:41:45Z <p>Grid doesn't support control templates (info taken from <a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/731bf94e-0881-49e1-a35a-99a2e2ca647f/" rel="nofollow">here</a> and, indirectly, from <a href="http://social.expression.microsoft.com/Forums/en-US/wpf/thread/51448155-637c-469d-856b-ff81552fe980/" rel="nofollow">here</a>).</p>