public virtual void Process(InitPlantSIArgs args)
 {
     if (!this.IsSIBoxValid(args.SIBox))
       {
     args.Abort();
     return;
       }
       args.SIBox.RelatedPlantEx = args.PlantEx;
       args.PlantEx.PutLuggage(args.LuggageName, args.SIBox);
 }
Exemple #2
0
 public virtual void Process(InitPlantSIArgs args)
 {
     if (!this.IsSIBoxValid(args.SIBox))
     {
         args.Abort();
         return;
     }
     args.SIBox.RelatedPlantEx = args.PlantEx;
     args.PlantEx.PutLuggage(args.LuggageName, args.SIBox);
 }
 public virtual void Process(InitPlantSIArgs args)
 {
     StandaloneIconPlantBox siBox = args.SIBox;
       this.ResolveIAdvanced(args);
       if (siBox.NotifyIcon != null)
       {
     return;
       }
       this.ResolveISimple(args);
       if (siBox.NotifyIcon == null)
       {
     args.Abort();
       }
 }
        public virtual void Process(InitPlantSIArgs args)
        {
            StandaloneIconPlantBox siBox = args.SIBox;

            this.ResolveIAdvanced(args);
            if (siBox.NotifyIcon != null)
            {
                return;
            }
            this.ResolveISimple(args);
            if (siBox.NotifyIcon == null)
            {
                args.Abort();
            }
        }