Paint.ToolboxLayoutManager.LoadToolboxLayouts C# (CSharp) Méthode

LoadToolboxLayouts() private méthode

Loads the toolbox layouts - from xml configuraiton files
private LoadToolboxLayouts ( ) : void
Résultat void
        private void LoadToolboxLayouts()
        {
            this.PaintPortraitToolboxLayout =
                ObjectDeserializer.DeserialiseFromXmlFile<ToolboxLayoutDefinition>("Content/PaintToolboxPortraitLayout.xml");

            this.PaintLandscapeToolboxLayout =
                ObjectDeserializer.DeserialiseFromXmlFile<ToolboxLayoutDefinition>("Content/PaintToolboxLandscapeLayout.xml");

            this.PlaybackPortraitToolboxLayout =
                ObjectDeserializer.DeserialiseFromXmlFile<ToolboxLayoutDefinition>("Content/PlaybackToolboxPortraitLayout.xml");

            this.PlaybackLandscapeToolboxLayout =
                ObjectDeserializer.DeserialiseFromXmlFile<ToolboxLayoutDefinition>("Content/PlaybackToolboxLandscapeLayout.xml");
        }