ColorDialog.AllFullOpen = false : ColorDialog : GUI Windows Forms C# Examples


C# Examples » GUI Windows Forms » ColorDialog »

 

ColorDialog.AllFullOpen = false








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


public  class  ColorDialogFullOpenOff{

        public  static  void  Main(){
        ColorDialog  dlg=new  ColorDialog();
        dlg.AllowFullOpen  =  false;

        dlg.ShowDialog();
    }

}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo GUI Windows Forms
» ColorDialog