public FileFormatOptionsSelector(bool isOutputContext)
        {
            m_isOutputContext = isOutputContext;

            // This call is required by the Windows.Forms Form Designer.
            InitializeComponent();

            optionsSelectorForm = new FileFormatOptionsSelectorForm(this);
            optionsSelectorForm.selectionChanged += new EventHandler(onOptionsSelectionChanged);
            optionsSelectorForm.defaultButtonClicked += new EventHandler(onDefaultButtonClicked);
        }
        public FileFormatOptionsSelector(bool isOutputContext)
        {
            m_isOutputContext = isOutputContext;

            // This call is required by the Windows.Forms Form Designer.
            InitializeComponent();

            optionsSelectorForm = new FileFormatOptionsSelectorForm(this);
            optionsSelectorForm.selectionChanged     += new EventHandler(onOptionsSelectionChanged);
            optionsSelectorForm.defaultButtonClicked += new EventHandler(onDefaultButtonClicked);
        }