Accessing OptionsMe.PanelManager1.CurrentPageIndexMe.PanelManager1.CurrentPage
Page Setting OptionsMe.PanelManager1.SetActivePage(Index)Me.PanelManager1.SetActivePage(PanelPageReference)
lstPanels.DisplayMember = "PageDescription"lstPanels.ValueMember = "PageIndex" '<---This would be the index property of the page
For Each panel as PanelManagerPage in PanelManager.PageCollection lstPanels.Items.Add(panel)Next
Then on the SelectedIndexChanged event of lstPanels I would just have to do something like this....PanelManager.SetActivePage(lstPanels.SelectedValue)
So, I just need to know how I can access this 'PageIndex' property I'm wanting to use.