Hi, can I achive this:
I think that something like this should work but No…
<Grid ColumnCount="2" DockPanel.Dock="Bottom">
<Image File="..." ux:Class="MyClass" ux:Name="Image01" Width="50" WidthUnit="Percent">
<Image File="..." ux:Name="Image02" Width="20" WidthUnit="Percent"/>
<Tapped>
<Scale Factor="1.3" Target="Image02" Duration="1" />
</Tapped
</Image>
<MyClass />
<MyClass />
</Grid>
This is posible? To create Elements or groups that contains other elements?
I want to put MyClass many times in the app with diferent Path in File="" And each Myclass in a field of the Grid.
Thanks!