コード例 #1
0
ファイル: ColorPalette.cs プロジェクト: dj-soft/GraphLibrary
        private void _Initialise(Dictionary <PaletteItemType, Color> userTable)
        {
            PaletteBaseColors baseColors = PaletteBaseColors.GetForSkin(PaletteSkinType.CurrentWindows);

            this._Initialise(PaletteSkinType.UserDefined, baseColors, userTable);
        }
コード例 #2
0
ファイル: ColorPalette.cs プロジェクト: dj-soft/GraphLibrary
        private void _Initialise(PaletteSkinType skin)
        {
            PaletteBaseColors baseColors = PaletteBaseColors.GetForSkin(skin);

            this._Initialise(skin, baseColors, null);
        }