Is there a way to group RadioButtons generated from the ItemTemplate of an ItemsControl - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T20:37:21Z http://stackoverflow.com/feeds/question/170061 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/170061/is-there-a-way-to-group-radiobuttons-generated-from-the-itemtemplate-of-an-itemsc 3 Is there a way to group RadioButtons generated from the ItemTemplate of an ItemsControl Jobi Joy 2008-10-04T09:43:35Z 2009-03-08T21:10:54Z <pre><code> &lt;DataTemplate x:Key="Genre_DataTemplate"&gt; &lt;RadioButton GroupName="One" Content="{Binding... &lt;/DataTemplate&gt; </code></pre> <p>Above code is the ItemTemplate of my ItemsControl, I want all the Radiobuttons instantiated should behave as if it is in a group, I know the reason because the generated RadioButtons are not adjacent in the visualtree.</p> <p>Any solution or workaround to group them together?. GroupName property also doesn't have any effect here. </p> <p>[Update] I am trying this in Silverlight</p> http://stackoverflow.com/questions/170061/is-there-a-way-to-group-radiobuttons-generated-from-the-itemtemplate-of-an-itemsc/170643#170643 2 Answer by ligaz for Is there a way to group RadioButtons generated from the ItemTemplate of an ItemsControl ligaz 2008-10-04T16:54:05Z 2008-10-04T16:54:05Z <p>I think the problem is somewhere else in the control tree. Can you post more details?</p> <p>Here is a sample xaml code that works as expected:</p> <pre><code>&lt;Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"&gt; &lt;Grid&gt; &lt;Grid.Resources&gt; &lt;XmlDataProvider x:Key="flickrdata" Source="http://api.flickr.com/services/feeds/photos_public.gne?tags=flower&amp;amp;lang=en-us&amp;amp;format=rss_200"&gt; &lt;XmlDataProvider.XmlNamespaceManager&gt; &lt;XmlNamespaceMappingCollection&gt; &lt;XmlNamespaceMapping Prefix="media" Uri="http://search.yahoo.com/mrss/"/&gt; &lt;/XmlNamespaceMappingCollection&gt; &lt;/XmlDataProvider.XmlNamespaceManager&gt; &lt;/XmlDataProvider&gt; &lt;DataTemplate x:Key="itemTemplate"&gt; &lt;RadioButton GroupName="One"&gt; &lt;Image Width="75" Height="75" Source="{Binding Mode=OneWay, XPath=media:thumbnail/@url}"/&gt; &lt;/RadioButton&gt; &lt;/DataTemplate&gt; &lt;ControlTemplate x:Key="controlTemplate" TargetType="{x:Type ItemsControl}"&gt; &lt;WrapPanel IsItemsHost="True" Orientation="Horizontal"/&gt; &lt;/ControlTemplate&gt; &lt;/Grid.Resources&gt; &lt;ItemsControl Width="375" ItemsSource="{Binding Mode=Default, Source={StaticResource flickrdata}, XPath=/rss/channel/item}" ItemTemplate="{StaticResource itemTemplate}" Template="{StaticResource controlTemplate}"&gt; &lt;/ItemsControl&gt; &lt;/Grid&gt; &lt;/Page&gt; </code></pre> <p>P.S.: In order grouping to work elements radio buttons should have same parent (as they usually have when generated from ItemsControl)</p> http://stackoverflow.com/questions/170061/is-there-a-way-to-group-radiobuttons-generated-from-the-itemtemplate-of-an-itemsc/624295#624295 3 Answer by Karim Hernandez for Is there a way to group RadioButtons generated from the ItemTemplate of an ItemsControl Karim Hernandez 2009-03-08T21:10:54Z 2009-03-08T21:10:54Z <p>Hi Joby</p> <p>The problem is that the RadioButton.GroupName behavior depends on the logical tree to find a common ancestor and effectively scope it's use to that part of the tree, but silverlight's ItemsControl doesn't maintain the logical tree. This means, in your example, the RadioButton's Parent property is always null</p> <p>I built a simple attached behavior to fix this. It is available here: <a href="http://www.dragonshed.org/blog/2009/03/08/radiobuttons-in-a-datatemplate-in-silverlight/" rel="nofollow">http://www.dragonshed.org/blog/2009/03/08/radiobuttons-in-a-datatemplate-in-silverlight/</a></p>