Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
890
[XamTileManager]Identify tile order
posted

Hi all,

I am using this XamTileManager in my project :

<ig:XamTileManager Name="MainTileControl" TileClosed="OnTileClosed">
      <ig:XamTileManager.NormalModeSettings>
            <ig:NormalModeSettings TileLayoutOrder="Horizontal" AllowTileSizing="No"/>
      </ig:XamTileManager.NormalModeSettings>
</ig:XamTileManager>

I am adding tiles manually using myXamTileManager.Items.Add(myTile);

After that, I am moving my tiles on the XamTileManager.

So at the end thay are not at the same position as at the begining on my screen, but they have the same position in the collection myXamTileManager.Items.

How could I identify which one of my collection myXamTileManager.Items is the first top left? (end the following)

I don't want to use TileLayoutOrder="UseExplicitRowColumnOnTile" because I want to keep the automatic tile move when I resize my XamTileManager.

Moreover if I use  TileLayoutOrder="UseExplicitRowColumnOnTile" I got to set the column and row when I am adding my tile manually, and it really sucks.

Thanks, regards