![]() |
|
QA: How to hide the OK button in the dialog in .Net Compact Framework application?
By Andrey Lebedev, November 06, 2003.
QuestionSome dialogs like wizards should contain neither OK nor X button. How can I the OK or X button in the dialog in .Net Compact Framework application? AnswerA. We have to import three functions from aygshell coredll DLLs: B. Then we write 2 functions (HideDoneButton and HideXButton) and add several constants: C. To hide the done (OK) button in the dialog you should add Paint event handler to the dialog and call HideDoneButton and HideXButton functions from there: If the Paint handler is not called then you should call there functions yourself from somewhere between the dialog creation and its destruction - one of the ideas is to create a timer and to call the functions from its handler. Done! Related resources:
DiscussDiscuss this article. Here you can write your comments and read comments of other developers. |
|||||||||||||||||||||