-1

可能重复:
有没有办法通过 Tag 属性获取 XAML 元素?

我有这样的代码:

                <ListBox x:Name="ImageListBox"  ScrollViewer.VerticalScrollBarVisibility="Disabled"
                     Height="100"  >

                    <ListBox.ItemsPanel >
                    <ItemsPanelTemplate>
                        <toolkit:WrapPanel  ItemHeight="100" ItemWidth="110" VerticalAlignment="Center" HorizontalAlignment="Center" />
                    </ItemsPanelTemplate>
                </ListBox.ItemsPanel>

                <ListBox.ItemTemplate>
                        <DataTemplate>
                        <Grid Tap="StackPanel_Tap" Tag="{Binding Type}" Name="Yashu">
                            <Border BorderThickness="{Binding Thickness}"  CornerRadius="0"   BorderBrush="White" Width="100" Height="100"  HorizontalAlignment="Center" VerticalAlignment="Center" Opacity="1" >
                                <!--<Grid>-->
                                <Image Tag="{Binding Type}" Source="{Binding Location}" Opacity="1" Width="100"  Height="100" Stretch="Fill" HorizontalAlignment="Center" VerticalAlignment="Center" UseLayoutRounding="True"  >
                                </Image>
                            </Border>

                        </Grid>
                    </DataTemplate>
                    </ListBox.ItemTemplate>
            </ListBox>
        </ScrollViewer>

如何通过标签名称获取 ListBox 中的网格元素?

4

1 回答 1

0

在事件处理程序StackPanel_Tap中,将发送者转换为网格。

object tag = (sender as Grid).Tag;

并让网格元素使用Grid grid1 = sender as Grid;

注意:这仅在用户点击项目时才有效。我希望它有帮助

于 2012-09-14T05:27:58.197 回答