Is there a way to group RadioButtons generated from the ItemTemplate of an ItemsControl - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T20:37:21Zhttp://stackoverflow.com/feeds/question/170061http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/170061/is-there-a-way-to-group-radiobuttons-generated-from-the-itemtemplate-of-an-itemsc3Is there a way to group RadioButtons generated from the ItemTemplate of an ItemsControlJobi Joy2008-10-04T09:43:35Z2009-03-08T21:10:54Z
<pre><code> <DataTemplate x:Key="Genre_DataTemplate">
<RadioButton GroupName="One" Content="{Binding...
</DataTemplate>
</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#1706432Answer by ligaz for Is there a way to group RadioButtons generated from the ItemTemplate of an ItemsControlligaz2008-10-04T16:54:05Z2008-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><Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid>
<Grid.Resources>
<XmlDataProvider x:Key="flickrdata" Source="http://api.flickr.com/services/feeds/photos_public.gne?tags=flower&amp;lang=en-us&amp;format=rss_200">
<XmlDataProvider.XmlNamespaceManager>
<XmlNamespaceMappingCollection>
<XmlNamespaceMapping Prefix="media" Uri="http://search.yahoo.com/mrss/"/>
</XmlNamespaceMappingCollection>
</XmlDataProvider.XmlNamespaceManager>
</XmlDataProvider>
<DataTemplate x:Key="itemTemplate">
<RadioButton GroupName="One">
<Image Width="75" Height="75" Source="{Binding Mode=OneWay, XPath=media:thumbnail/@url}"/>
</RadioButton>
</DataTemplate>
<ControlTemplate x:Key="controlTemplate" TargetType="{x:Type ItemsControl}">
<WrapPanel IsItemsHost="True" Orientation="Horizontal"/>
</ControlTemplate>
</Grid.Resources>
<ItemsControl
Width="375"
ItemsSource="{Binding Mode=Default, Source={StaticResource flickrdata}, XPath=/rss/channel/item}"
ItemTemplate="{StaticResource itemTemplate}"
Template="{StaticResource controlTemplate}">
</ItemsControl>
</Grid>
</Page>
</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#6242953Answer by Karim Hernandez for Is there a way to group RadioButtons generated from the ItemTemplate of an ItemsControlKarim Hernandez2009-03-08T21:10:54Z2009-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>