RobotStudio event

page expansion

Options

hi

I would like to make several user pages using FPSDK. i.e. there is a main menu page, one of button in the page (screen) is clicked, the screen goes to relevant page...it seems like simple but I cannot find the way... please let me know thank you..(C# preferred)

Best & Kind Regards,
spaik

Comments

  • RussD
    Options

    Your main form class should inherit from TpsControl and include your navigation buttons, then your sub-pages should inherit from GTPUMasterDialog.

    GTPUMasterDialog includes the option to use a CommandBar at the bottom of the form. the commandbar includes an ActionItem ("OK" button") and CancelItem("Cancel" button) that makes it easy to handle the closing of the form.  

    The sub-pages are handled like any other form class; you create an instance of the form, you instantiate it, then you call its ShowMe(Me) method. You cna do all of this in your button's click event handler.

    Russell Drown
  • spaik
    spaik ✭✭
    Options

    thank you...it works..

    Best & Kind Regards,
    spaik