Alexandria.Engines.DarkSouls.TextureArchive.Browse C# (CSharp) Метод

Browse() публичный Метод

Create a browser for the archive. If this contains just one texture, then it is browsed.
public Browse ( Action progressUpdateCallback = null ) : Control
progressUpdateCallback Action
Результат 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);
        }