Hello-My existing ArcMap 10 DLL, created in Visual C# 2008, creates a button which shows a Windows Form containing a ListBox, a few buttons, and a DataGridView control. Is it possible to implement this within the new Add-In environment?
public class YourButton : ESRI.ArcGIS.Desktop.AddIns.Button { public YourButton() { } protected override void OnClick() { frmYourForm yourForm= new frmYourForm(); yourForm.Text = "Your App Name"; yourForm.ShowDialog(); } }
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.