¿Hay alguna manera de obtener el elemento XAML por propiedad de etiqueta?

Is there any way to get the XAML element by its tag value??

Mi código es así:

<Grid Tap="StackPanel_Tap" Tag="{Binding Type}" >
       <Border BorderThickness="0"  CornerRadius="0"  BorderBrush="White" Width="100" Height="100"  HorizontalAlignment="Center" VerticalAlignment="Center" Opacity="1" >
      <Image Tag="{Binding Type}" Source="{Binding Location}" Opacity="1" Width="100"  Height="100" Stretch="Fill" HorizontalAlignment="Center" VerticalAlignment="Center" UseLayoutRounding="True"  >
       </Image>
      </Border>
</Grid>

Estoy vinculando Tag Property for Grid, ¿hay alguna forma de obtener un objeto de Grid usando Tag Propertty?

Lo siento por menos información, la cosa es que la cuadrícula está en ListBox ... ¿Cómo puedo acceder al objeto de cuadrícula?

Gracias y Reagrds Yashavantha

Respuestas a la pregunta(1)

Su respuesta a la pregunta