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(); } }
Přihlášení členové mohou přispívat, sledovat aktualizace a další. Jste tu noví? Zaregistrujte si bezplatný účet.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.