我有以下代码,用于在行和列中发布按钮。
<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; }
}
我如何知道按下了哪个特定按钮? (行/列就足够了)。 非常感谢提前:))