Esempio n. 1
0
        /// <summary>
        /// Launch Hellow world example
        /// </summary>
        private static void LaunchHelloWorld()
        {
            HelloWorld addOn = new HelloWorld
            {
                Application = SAPUIInitializer.GetApplication()
            };

            addOn.ShowMessage();
        }
Esempio n. 2
0
        private static void LaunchCatchingEvents()
        {
            CatchingEvents addOn = new CatchingEvents
            {
                Application = SAPUIInitializer.GetApplication()
            };

            addOn.Init();
            System.Windows.Forms.Application.Run();
        }