I have a dashboard Window
that contain a Frame
, This frame hold a lot of pages,
In particular point how can I get the current page that loaded in the frame
Hope this clear
I have a dashboard Window
that contain a Frame
, This frame hold a lot of pages,
In particular point how can I get the current page that loaded in the frame
Hope this clear
You can get the current Page
from the Content
property of the Frame
:
Page currentPage = frame1.Content as Frame;