Parents
  • using System;
    using System.Collections.Generic;
    using System.Text;
    using Aveva.ApplicationFramework;
    using Aveva.ApplicationFramework.Presentation;
    using Aveva.Pdms.Shared;
    using Aveva.Pdms.Database;
    namespace testdotnet
    {
       public class Class1 : IAddin
       {
           #region IAddin 成员
           public string Description
           {
               get { return "Description my addins"; }
           }
           public string Name
           {
               get { return "testdotnet"; }
           }
           public void Start(ServiceManager serviceManager)
           {
               Form1 f = new Form1();
               f.Show();
           }
           public void Stop()
           {
               
           }
           #endregion
       }
    }
Reply
  • using System;
    using System.Collections.Generic;
    using System.Text;
    using Aveva.ApplicationFramework;
    using Aveva.ApplicationFramework.Presentation;
    using Aveva.Pdms.Shared;
    using Aveva.Pdms.Database;
    namespace testdotnet
    {
       public class Class1 : IAddin
       {
           #region IAddin 成员
           public string Description
           {
               get { return "Description my addins"; }
           }
           public string Name
           {
               get { return "testdotnet"; }
           }
           public void Start(ServiceManager serviceManager)
           {
               Form1 f = new Form1();
               f.Show();
           }
           public void Stop()
           {
               
           }
           #endregion
       }
    }
Children
No Data