/// <概要>
/// DesignView - デザインタブを更新し、メニューに対するデフォールト値を設定する
/// </概要>
private void DesignView()
{
this.sb.Text = "レポートが読み込み中";
this.ardMain.Selection.Clear();
this.ardMain.Selection.Select(this.ardMain.Report);
this.mnuFilePrint.Enabled = false;
//メニューの項目をリセットする
this.mnuFileNew.Enabled = true;
this.mnuFileOpen.Enabled = true;
this.mnuFileSave.Enabled = true;
this.mnuFilePrint.Enabled = false;
this.mnuFileExport.Enabled = false;
this.mnuFilePrintPreview.Enabled = true;
this.mnuFormat.Enabled = true;
this.mnuInsert.Enabled = true;
this.mnuEditCopyPage.Enabled = false;
this.mnuEditFind.Enabled = false;
this.mnuFileExport.Enabled = false;
this.mnuEditProperties.Enabled = true;
this.mnuFileSaveAs.Enabled = true;
this.mnuFileReportProperties.Enabled = true;
this.sb.Text = "準備完了";
}