/// <summary>
        /// LibraryExplorerListオブジェクトの新しいインスタンスを初期化します。
        /// </summary>
        public LibraryExplorerList()
        {
            this.m_SuspendedRefresh        = false;
            this.m_DisplayedFolderPath     = "";
            this.m_TextEditor              = new TextEditor();
            this.m_ApplicationMessageQueue = new ApplicationMessageQueue(this);
            this.m_ApplicationMessageQueue.Start();

            InitializeComponent();


            this.TargetFolderChanged += this.LibraryExplorerList_TargetFolderChanged;
        }
예제 #2
0
 private void Initialize()
 {
     this.m_MessageQueue = new ApplicationMessageQueue(this);
     this.m_MessageQueue.Start();
 }