码迷,mamicode.com
首页 > 其他好文 > 详细

AE 打开工具箱工具的对话框

时间:2017-04-07 22:16:18      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:ati   dex   ace   bar   uil   att   c#   location   amp   

The best approach to run a system tool—or any tool or model created, and saved in a toolbox from a button—is to create an add-in control. Add-in controls are a new feature in ArcGIS 10. You can create an add-in control through the Customize dialog box by selecting the Commands tab category, then Add-in Controls. For more information on getting started with add-ins, see Building add-ins for ArcGIS Desktop.
Once created, you can add the control to toolbars or menus. When you click a button (for example, in ArcMap), its OnClick method is called.
To start a geoprocessing tool from the button, copy and paste the following code example inside the code block of the OnClick method. The InvokeModal method of the IGPToolCommandHelper2 interface is called to open the tool. Remember to replace the name of the toolbox, and the name of the tool or script you want to reference. Pay close attention to the tool‘s actual location and name, not its label. You can get this information by right-clicking the tool in Catalog and reviewing the properties. For more information, see Toolbox properties: name, label, and alias in the ArcGIS Desktop User Help system. 
When you add the control, you can click the button and the Buffer tool appears. See the following code example:

[C#]

protected override void OnClick()
{

    //Set a reference to the IGPCommandHelper2 interface.
    IGPToolCommandHelper2 pToolHelper = new GPToolCommandHelperClass()as
        IGPToolCommandHelper2;

    //Set the tool you want to invoke.
    string toolboxName = @
        "<ArcGIS install directory>\ArcToolbox\Toolboxes\Analysis Tools.tbx";
    pToolHelper.SetToolByName(toolboxName, "Buffer");

    //Create the messages object and a bool to pass to the InvokeModal method.
    IGPMessages msgs;
    msgs = new GPMessagesClass();
    bool pok = true;

    //Invoke the tool. 
    pToolHelper.InvokeModal(0, null, out pok, out msgs);

}

AE 打开工具箱工具的对话框

标签:ati   dex   ace   bar   uil   att   c#   location   amp   

原文地址:http://www.cnblogs.com/gisoracle/p/6679723.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!