<DataTemplate x:Key="Genre_DataTemplate">
<RadioButton GroupName="One" Content="{Binding...
</DataTemplate>
上面的代码是我的ItemsControl的ItemTemplate,我想要实例化的所有Radiobuttons应该表现得好像它在一个组中,我知道原因,因为生成的RadioButtons在visualtree中不相邻。
将它们组合在一起的任何解决方案或解决方法? GroupName属性在这里也没有任何影响。
[更新]我在Silverlight中尝试这个
答案 0 :(得分:4)
问题在于RadioButton.GroupName行为依赖于逻辑树来查找共同的祖先并有效地将其用于树的那一部分,但silverlight的ItemsControl不维护逻辑树。这意味着,在您的示例中,RadioButton的Parent属性始终为null
我构建了一个简单的附加行为来解决这个问题。它可以在这里找到:http://www.dragonshed.org/blog/2009/03/08/radiobuttons-in-a-datatemplate-in-silverlight/
答案 1 :(得分:3)
我认为问题出在控制树的其他地方。你能发布更多细节吗?
以下是一个按预期工作的示例xaml代码:
<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&lang=en-us&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>
P.S。:为了将工作元素分组,单选按钮应该具有相同的父级(就像从ItemsControl生成时一样)