Need an example of using the base class CommonDialog

  • Thread starter Thread starter Patrick Blackman
  • Start date Start date
P

Patrick Blackman

I want to create my own custom common dialog derived from the base
class"CommonDialog" to display my custom form any ideas how to accomplish
this with an example.
Thanks
Patrick
 
Hi Patrick,

As far as I understand, CommonDialog is the base class for system dialogs
like OpenFileDialog or ColorDialog.
If you just need to create your own dialog, just create a regular form and
then display it with the ShowDialog method.
 
Back
Top