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

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

所以我想做的是能够将事件/变量传递给其他文件。
请在您感到不赞成投票之类的欲望之前,先让我弄清楚我在做什么错(如果我不知道他们在做什么错,我不会学会发布更好的问题),谢谢您的帮助。

这是一些代码

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;
    }
}

}

最佳答案

据我了解,您想实例化一些信息的Button对象(类),对吗?

有2个选项。第一个是定义一个允许您注入参数的构造函数,第二个是创建对象,然后使用所需的信息设置属性。

这就是代码中的样子。

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

我希望这有帮助。

关于c# - C#Gis加载项应用程序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19375729/

10-11 15:34