6 references to FOS_HIDEPINNEDPLACES
System.Windows.Forms (6)
System\Windows\Forms\Dialogs\CommonDialogs\FileDialog.cs (1)
298(int)(_dialogOptions & (FOS_OKBUTTONNEEDSINTERACTION | FOS_HIDEPINNEDPLACES | FOS_DEFAULTNOMINIMODE | FOS_FORCEPREVIEWPANEON));
System\Windows\Forms\Dialogs\CommonDialogs\FileDialog.Vista.cs (3)
96| FOS_HIDEPINNEDPLACES 284get => !_dialogOptions.HasFlag(FOS_HIDEPINNEDPLACES); 285set => _dialogOptions.ChangeFlags(FOS_HIDEPINNEDPLACES, !value);
System\Windows\Forms\Dialogs\CommonDialogs\FolderBrowserDialog.cs (2)
123get => !GetOption(FOS_HIDEPINNEDPLACES); 124set => SetOption(FOS_HIDEPINNEDPLACES, !value);