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(); } }
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.