public HComboFolder()
 {
     this.Build();
     //create popup
     popup = new FolderChooserDialog(this);
     //
     comboBox.PopupButton.Clicked += OnButtonClicked;
     //put desktop as default folder
     Environment.SpecialFolder folder = Environment.SpecialFolder.Desktop;
     this.SelectedPath = Environment.GetFolderPath(folder);
 }
 public HComboFolder()
 {
     this.Build();
     //create popup
     popup       = new FolderChooserDialog( this );
     //
     comboBox.PopupButton.Clicked    += OnButtonClicked;
     //put desktop as default folder
     Environment.SpecialFolder folder = Environment.SpecialFolder.Desktop ;
     this.SelectedPath = Environment.GetFolderPath( folder );
 }