Hello,
I am trying to implement a new control add in in NAV 2016 following this tutorial: msdn.microsoft.com/.../dn182584(v=nav.90).aspx Steps
My Problem: When I want to edit the events defined in the C# file, they do not show up in the C/AL editor inside NAV Development. I don't know why?
Here is my C# code:
using Microsoft.Dynamics.Framework.UI.Extensibility; namespace ThreeJSControlAddIn { [ControlAddInExport("ThreeJSControlAddIn")] public interface IThreeJSControlAddIn { [ApplicationVisible] event ApplicationEventHandler ControlAddInReady; [ApplicationVisible] event ApplicationEventHandler ThreeJSLoaded; [ApplicationVisible] void LoadData(); } }
Here's the C/AL Editor window:
*This post is locked for comments