//显示table of Content内容
private void OpenContenWindow()//over视图
{
IMxDocument mxDocument = m_application.Document as IMxDocument;
int num = mxDocument.ContentsViewCount;
for (int i = 0; i < num; i++)
{
ESRI.ArcGIS.ArcMapUI.IContentsView contentsView = mxDocument.get_ContentsView(i);
MessageBox.Show(i.ToString() + ":" + contentsView.Name);
}
//MessageBox.Show( .ToString());
}