Alexandria.Engines.DarkSouls.TextureArchive.Browse C# (CSharp) Méthode

Browse() public méthode

Create a browser for the archive. If this contains just one texture, then it is browsed.
public Browse ( Action progressUpdateCallback = null ) : Control
progressUpdateCallback Action
Résultat System.Windows.Forms.Control
        public override Control Browse(Action<double> progressUpdateCallback = null)
        {
            if (Children.Count == 1)
                return Children[0].BrowseContents(progressUpdateCallback);
            return base.Browse(progressUpdateCallback);
        }