Exemplo n.º 1
0
 /// <summary>
 /// Calls <see cref="FarNet.Explorer.ExploreDirectory"/>.
 /// </summary>
 /// <param name="args">.</param>
 public virtual Explorer UIExploreDirectory(ExploreDirectoryEventArgs args)
 {
     return(Explorer.ExploreDirectory(args));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Returns a new directory explorer or null. It must not return itself.
 /// </summary>
 /// <param name="args">.</param>
 /// <remarks>
 /// It is not called if <see cref="Functions"/> contains the <see cref="ExploreLocation"/> flag.
 /// <para>
 /// It is called when a user enters a directory, on search, and scan.
 /// It should just get another explorer with a new location and do nothing else.
 /// </para>
 /// <include file='doc.xml' path='doc/ExplorerModes/*'/>
 /// </remarks>
 public virtual Explorer ExploreDirectory(ExploreDirectoryEventArgs args)
 {
     return(null);
 }