How to set WPF's Grid.RowDefinitions via Style - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T21:37:37Zhttp://stackoverflow.com/feeds/question/355420http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/355420/how-to-set-wpfs-grid-rowdefinitions-via-style1How to set WPF's Grid.RowDefinitions via StyleDavid Schmitt2008-12-10T08:31:32Z2009-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><ListView SharedSizeScope="true">
<ListView.View>
<GridView>
<GridViewColumn>
<GridViewColumn.CellTemplate>
<DataTemplate>
<Grid>
<Grid.RowDefinitions>
<RowDefinition SharedSizeGroup="foo" />
<!-- ... -->
</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><Style TargetType="{x:Type Grid}">
<Setter Property="RowDefinitions">
<Setter.Value>
<RowDefinition SharedSizeGroup="foo" />
<!-- ... -->
</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#3554351Answer by Tomalak for How to set WPF's Grid.RowDefinitions via StyleTomalak2008-12-10T08:41:45Z2008-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>