Exemple #1
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public void DefaultInternalEventHandler(InternalEvent.DummyForInternalEvent dummy = null)
        ///
        /// \brief Default internal event.
        ///
        /// \par Description.
        ///      -  This method is the default InternalEvent handler.
        ///      -  This method is used as a default value for the InternalEvent handler selection combo box
        ///      -  When creating an InternalEvent the programmer has to create a handler like this
        ///         And set it's name to the last parameter of the InsertInternalEvent or set it in the GUI
        ///
        /// \par Algorithm.
        ///
        /// \par Usage Notes.
        ///
        /// \author Ilanh
        /// \date 14/01/2018
        ///
        /// \param dummy (Optional)  (DummyForInternalEvent) - The dummy.
        ////////////////////////////////////////////////////////////////////////////////////////////////////

        public void DefaultInternalEventHandler(InternalEvents.DummyForInternalEvent dummy = null)
        {
        }
 public void StatusSetting(InternalEvents.DummyForInternalEvent dummy = null)
 {
     or[p.ork.Status]      = ea[ne.eak.Id];
     pp[bp.ppk.Background] = TypesUtility.GetKeyFromString(typeof(KnownColor), StatusColor[ea[ne.eak.Id] % StatusColor.Length]);
 }
Exemple #3
0
 public void TurnGrayInternalEventHandler(InternalEvents.DummyForInternalEvent dummy = null)
 {
     or[p.ork.StatusColor] = "Gray";
     pp[bp.ppk.Background] = System.Drawing.KnownColor.LightGray;
 }
 public void InCodeInternalEventHandler(InternalEvents.DummyForInternalEvent dummy = null)
 {
     MessageRouter.MessageBox(new List <string> {
         "In InCodeInternalEventHandler"
     }, "TestProcess");
 }