/// <summary>
        /// プロパティを開く。
        /// </summary>
        private void ShowProperty()
        {
            if (Property == null)
            {
                Property = new PropertyContent()
                {
                    Name = "Property"
                };

                MainForm.ShowContent(Property, DockState.DockRight);
                RefreshSelectedNodeProperty();
            }
        }
 /// <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");
 }