错误应输入 class、delegate、enum、interface 或 struct
各位大神 我是个初学者中的菜鸟 要做一个ARCGIS的界面下面的一部分程序是将两个控件绑定的 但是不懂为什么出现了错误 希望各位大神能帮帮我
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using ESRI.ArcGIS.ADF;
using ESRI.ArcGIS.SystemUI;
using ESRI.ArcGIS.Geometry;
using ESRI.ArcGIS.Display;
using ESRI.ArcGIS.Controls;
using ESRI.ArcGIS.esriSystem;
using ESRI.ArcGIS.Carto;
namespace GIS设计
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
}
private void MainForm_Load(object sender, EventArgs e)
{
// 将主窗体放大到整个屏幕
this.Size = Screen.PrimaryScreen.WorkingArea.Size;
this.Location = new System.Drawing.Point(0, 0);
// 将axToolbarControl和axTOCControl与axMapControl1绑定!
axToolbarControl1.SetBuddyControl(axMapControl1);
axTOCControl1.SetBuddyControl(axMapControl1);
}
private void tabControl1_TabIndexChanged(object sender, EventArgs e)
{
}
private void tabControl1_SelectedIndexChanged(object sender, EventArgs e)
{
if (tabControl1.SelectedIndex == 0)
{
axToolbarControl1.SetBuddyControl(axMapControl1);
axTOCControl1.SetBuddyControl(axMapControl1);
}
else
{
axToolbarControl1.SetBuddyControl(axPageLayoutControl1);
axTOCControl1.SetBuddyControl(axPageLayoutControl1);
}
}
}
出现这种错误
错误 1 应输入 class、delegate、enum、interface 或 struct E:\GIS\作业\arcgis engine\GIS设计\GIS设计\Form1.cs 25 15 GIS设计
错误 2 应输入 class、delegate、enum、interface 或 struct E:\GIS\作业\arcgis engine\GIS设计\GIS设计\Form1.cs 29 33 GIS设计
错误 3 应输入 class、delegate、enum、interface 或 struct E:\GIS\作业\arcgis engine\GIS设计\GIS设计\Form1.cs 38 17 GIS设计
错误 4 应输入 class、delegate、enum、interface 或 struct E:\GIS\作业\arcgis engine\GIS设计\GIS设计\Form1.cs 43 17 GIS设计
错误 5 应输入类型、命名空间定义或文件尾 E:\GIS\作业\arcgis engine\GIS设计\GIS设计\Form1.cs 60 1 GIS设计