在ItemsPanelTemplate中获取selectedItem

时间:2013-08-27 05:47:12

标签: wpf xaml itemspaneltemplate

我有以下代码,用于在行和列中发布按钮。

<ItemsControl ItemsSource="{Binding MyCollection}">
<!-- ItemsPanelTemplate -->
<ItemsControl.ItemsPanel>
    <ItemsPanelTemplate>
        <UniformGrid Columns="2" />
    </ItemsPanelTemplate>
</ItemsControl.ItemsPanel>

<!-- ItemTemplate -->
<ItemsControl.ItemTemplate>
    <DataTemplate>
        <Button Content="{Binding }" />
    </DataTemplate>
</ItemsControl.ItemTemplate>

这是我的集合,用于填充用户控件

private Collection<TemplateView> _myCollection; 
public Collection<TemplateView> MyCollection
{ 
    get { return _myCollection; } 
    set { _myCollection = value; } 
}

我如何知道按下了哪个特定按钮? (行/列就足够了)。 非常感谢提前:))

0 个答案:

没有答案