I was wondering if there is an easier way to switch pages within a property sheet. I have 3 pages that store settings in the esri_core_optionsPropertySheet and I was wondering if there is a smoother way of switching pages without having to scroll and click each page. Right now if I wanted to programmatically switch pages, I would have to do a Propertysheet.ShowDialog which just opens a new property sheet instead of changing the page that I have open in the property sheet.
Solved! Go to Solution.
Hi,
You need to get page, you want to migrate using id from config.daml, and select it. Code below:
var appPage = PropertySheet.Page("esri_sdk_PropertyPageAppSettings");
appPage.IsSelected = true;
Hi,
You need to get page, you want to migrate using id from config.daml, and select it. Code below:
var appPage = PropertySheet.Page("esri_sdk_PropertyPageAppSettings");
appPage.IsSelected = true;
That worked, thank you very much!