Ejemplo n.º 1
0
        /// <inheritdoc/>
        /// <remarks>
        /// The method updates internal data depending on the current explorer.
        /// </remarks>
        public override void UIExplorerEntered(ExplorerEnteredEventArgs args)
        {
            if (args == null)
            {
                return;
            }

            base.UIExplorerEntered(args);
            DoExplored((ItemExplorer)args.Explorer);
        }
Ejemplo n.º 2
0
        /// <inheritdoc/>
        /// <remarks>
        /// The method updates internal data depending on the current explorer.
        /// </remarks>
        public override void UIExplorerEntered(ExplorerEnteredEventArgs args)
        {
            if (args == null)
            {
                return;
            }

            base.UIExplorerEntered(args);
            Log.Source.TraceInformation("Entering DoExplored from UIExplorerEntered");
            DoExplored((ACDExplorer)args.Explorer);
        }
Ejemplo n.º 3
0
        /// <inheritdoc/>
        /// <remarks>
        /// The method updates internal data depending on the current explorer.
        /// </remarks>
        public override void UIExplorerEntered(ExplorerEnteredEventArgs args)
        {
            if (args == null) return;

            base.UIExplorerEntered(args);
            DoExplored((ItemExplorer)args.Explorer);
        }
Ejemplo n.º 4
0
 /// <summary>
 /// It is called when a new explorer has been attached after one of the explore methods.
 /// </summary>
 /// <param name="args">.</param>
 /// <remarks>
 /// The base method triggers the <see cref="ExplorerEntered"/> event.
 /// </remarks>
 public virtual void UIExplorerEntered(ExplorerEnteredEventArgs args)
 {
     if (ExplorerEntered != null)
         ExplorerEntered(this, args);
 }