ThemeEditor.WPF.Themes.ColorsViewModel.ColorsViewModel C# (CSharp) Method

ColorsViewModel() public method

public ColorsViewModel ( Colors colors, string tag ) : ThemeEditor.Common.Themes
colors ThemeEditor.Common.Themes.Colors
tag string
return ThemeEditor.Common.Themes
        public ColorsViewModel(Colors colors, string tag) : base(colors, tag)
        {
            Arrow = new ArrowSetViewModel(colors.Arrow, tag);
            ArrowButton = new ArrowButtonSetViewModel(colors.ArrowButton, tag);
            BottomCorner = new BottomCornerSetViewModel(colors.BottomCornerButton, tag);
            BottomBackgroundOuter = new BottomOuterSetViewModel(colors.BottomBackgroundOuter, tag);
            BottomBackgroundInner = new BottomBackgroundInnerSetViewModel(colors.BottomBackgroundInner, tag);
            Close = new OpenCloseSetViewModel(colors.Close, tag);
            Cursor = new CursorSetViewModel(colors.Cursor, tag);
            DemoText = new DemoTextSetViewModel(colors.DemoText, tag);
            File = new FileSetViewModel(colors.File, tag);
            Folder = new FolderSetViewModel(colors.Folder, tag);
            FolderArrow = new FolderArrowSetViewModel(colors.FolderArrow, tag);
            FolderBackground = new BottomBackgroundInnerSetViewModel(colors.FolderBackground, tag);
            GameText = new GameTextSetViewModel(colors.GameText, tag);
            Open = new OpenCloseSetViewModel(colors.Open, tag);
            TopCorner = new TopCornerSetViewModel(colors.TopCornerButton, tag);
            TopBackground = new TopSolidSetViewModel(colors.TopBackground, tag);
        }