Reputation: 217
I'm very new to creating Windows Mobile applications. I have a Submit button on a form and at the button click I want to open a small popup that overlaps the current window with checkbox and button. After clicking the button on pop up form will submit.
Any help appreciated
Upvotes: 0
Views: 1351
Reputation: 31
If it can help anybody, at least me, the location property couldn't be changed just because of the formborderStyle property. Set it to none, and you'll be able to change the location of your form !
Upvotes: 0
Reputation: 2039
You can create a "pop up" screen by creating a new Form class as normal but manually set the size and location so that it doesn't occupy the entire screen. From the calling screen, use the .ShowDialog() function to display your "pop up" form. Note that if your application is maximized to hide the windows title bar, this popup form will display the title bar again, as it doesn't occupy the entire screen.
Upvotes: 0