public FastFileAccessWindow() : base(null)
        {
            this.Caption = "Fast File Access";

            m_Control    = new FastFileAccessWindowControl();
            this.Content = m_Control;
        }
        public FastFileAccessWindow() : base(null)
        {
            this.Caption            = "Fast File Access";
            this.BitmapImageMoniker = KnownMonikers.OpenFileDialog;

            m_Control    = new FastFileAccessWindowControl();
            this.Content = m_Control;
        }