C#Gis加载项应用程序

时间:2013-10-15 07:41:44

标签: c# arcgis esri

我是gis的初学者,我必须用2个按钮创建一个简单的应用程序文件夹浏览器和列表框。

但是这里是arcmap插件中的东西,我需要处理多个文件,如button.cs等,但我不知道如何让文件互相交互。 我一直在浏览许多论坛和arcgis资源中心。 但我似乎找不到任何东西。

所以我想做的是能够将事件/变量传递给其他文件。 请你在感受到downvote或类似之类的冲动之前尝试让我明白我做错了什么(如果我不知道他们的错误,我不会学会发出更好的问题),谢谢你的帮助。

这是一些代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using ESRI.ArcGIS.esriSystem;
using ESRI.ArcGIS.Framework;
using ESRI.ArcGIS.ArcMapUI;

namespace ArcMapAddin16
{
public class Button1 : ESRI.ArcGIS.Desktop.AddIns.Button
{
    public Button1()
    {
    }

    protected override void OnClick()
    {
        UID dockWinID = new UIDClass();
        dockWinID.Value = ThisAddIn.IDs.DockableWindow1;
        IDockableWindow dockWindow =      ArcMap.DockableWindowManager.GetDockableWindow(dockWinID);
        dockWindow.Show(true);

        listBox1.Items.Add("Sally");
        listBox1.Items.Add("Craig");

        ArcMap.Application.CurrentTool = null;
    }
    protected override void OnUpdate()
    {
        Enabled = ArcMap.Application != null;
    }
}

}

2 个答案:

答案 0 :(得分:0)

从我能理解的,你想用一些信息实例化一个Button对象(类),对吗?

有两种选择。第一个是定义一个允许你注入参数的构造函数,第二个是创建对象,然后用你需要的信息设置属性。

这就是代码的外观;

public class Person
{
 // default constructor
 public Person()
 {
 }

 public Person(string name, int age)
 {
  Name = name;
  Age = age;
 }

 public string Name {get;set;}
 public int Age {get;set;}
}

public class Employee
{
 private Person _person;

 // default constructor
 // Option 1;
 public Employee()
 {
  // create instance of person injecting name and age on instantiation
  Person = new Person("John Doe", "42");
 }

 // Option 2
 public Employee(string name, int age)
 {
  // create instance with default constructor 
  Person = new Person();

  // set properties once object is created.
  Person.Name = name;
  Person.Age = age;
 }

}

我不了解您的编程技巧,但如果您是C#的新手,请查看this link

我希望这会有所帮助。

答案 1 :(得分:0)

您需要实现一个扩展,然后您可以从插件的其他组件访问该扩展。 Custom selection extension示例显示了如何在组件之间实现此类通信。