-3

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

Abdulsalam Elsharif
  • 4,773
  • 7
  • 32
  • 66

1 Answers1

3

You can get the current Page from the Content property of the Frame:

Page currentPage = frame1.Content as Frame;
mm8
  • 163,881
  • 10
  • 57
  • 88