/// <summary>
        /// 出力を開く。
        /// </summary>
        private void ShowOutput()
        {
            if (Output == null)
            {
                Output = new OutputContent()
                {
                    Name = "Output"
                };

                MainForm.ShowContent(Output, DockState.DockBottom);
            }
        }
 /// <summary>
 /// 復元したコンテントをコントローラと紐付ける。
 /// </summary>
 private void RebindContents()
 {
     ProjectExplorer = MainForm.RebindContent<ProjectExplorerContent>("ProjectExplorer");
     ErrorList = MainForm.RebindContent<ErrorListContent>("ErrorList");
     Output = MainForm.RebindContent<OutputContent>("Output");
     ObjectBrowser = MainForm.RebindContent<ObjectBrowserContent>("ObjectBrowser");
     Property = MainForm.RebindContent<PropertyContent>("Property");
 }