ColorDialog.FullOpen = true : ColorDialog : GUI Windows Forms C# Examples


C# Examples » GUI Windows Forms » ColorDialog »

 

ColorDialog.FullOpen = true








    
using  System;
using  System.Drawing;
using  System.ComponentModel;
using  System.Windows.Forms;


public  class  ColorDialogFullOpen{

        public  static  void  Main(){
        ColorDialog  dlg=new  ColorDialog();
        dlg.FullOpen  =  true;

        dlg.ShowDialog();
    }

}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo GUI Windows Forms
» ColorDialog