I need a way to determine active Tile in XamTileControl. For XamDockManager I use ActivePaneChanged, is there something in the same lines for XamTilesControl ?
Hello,
I am just checking if you got this worked out, or you still require any assistance, or clarification on the matter.
If this is what you were looking for please verify the answer so it helps other users as well.
I have been looking into your enquiry, however the XamTilesControl and its successor, both are not meant to provide active/selected panel functionality. All its panes are meant to functional at all time. If you’d like to check whether a child element of any XamTile I focused you can try out this code snippet:
IInputElement temp= FocusManager.GetFocusedElement(this);
XamTile activeTile = Utilities.GetAncestorFromType(temp as DependencyObject, typeof(XamTile), false) as XamTile;
Hope this helps. Please let me know, if you require any further clarification on the matter.