当前位置: 首页>>代码示例>>C#>>正文


C# ColorType.ToString方法代码示例

本文整理汇总了C#中ColorType.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# ColorType.ToString方法的具体用法?C# ColorType.ToString怎么用?C# ColorType.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ColorType的用法示例。


在下文中一共展示了ColorType.ToString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ReadColor

        MyHighlightingColor ReadColor(XElement color, ref ColorType colorType)
        {
            var name = color.Attribute("name");
            if (name == null)
                return null;
            colorType = ToColorType(name.Value);
            if (colorType == ColorType.Last)
                return null;

            var colorInfo = colorInfos[(int)colorType];

            var hl = new MyHighlightingColor();
            hl.Name = colorType.ToString();

            var fg = GetAttribute(color, "fg", colorInfo.DefaultForeground);
            if (fg != null)
                hl.Foreground = CreateColor(fg);

            var bg = GetAttribute(color, "bg", colorInfo.DefaultBackground);
            if (bg != null)
                hl.Background = CreateColor(bg);

            var color3 = GetAttribute(color, "color3", colorInfo.DefaultColor3);
            if (color3 != null)
                hl.Color3 = CreateColor(color3);

            var color4 = GetAttribute(color, "color4", colorInfo.DefaultColor4);
            if (color4 != null)
                hl.Color4 = CreateColor(color4);

            var italics = color.Attribute("italics") ?? color.Attribute("italic");
            if (italics != null)
                hl.FontStyle = (bool)italics ? FontStyles.Italic : FontStyles.Normal;

            var bold = color.Attribute("bold");
            if (bold != null)
                hl.FontWeight = (bool)bold ? FontWeights.Bold : FontWeights.Normal;

            return hl;
        }
开发者ID:se7ensoft,项目名称:dnSpy,代码行数:40,代码来源:Theme.cs

示例2: CreateHighlightingColor

        MyHighlightingColor CreateHighlightingColor(ColorType colorType)
        {
            var hl = new MyHighlightingColor { Name = colorType.ToString() };

            var colorInfo = colorInfos[(int)colorType];

            if (colorInfo.DefaultForeground != null)
                hl.Foreground = CreateColor(colorInfo.DefaultForeground);

            if (colorInfo.DefaultBackground != null)
                hl.Background = CreateColor(colorInfo.DefaultBackground);

            if (colorInfo.DefaultColor3 != null)
                hl.Color3 = CreateColor(colorInfo.DefaultColor3);

            if (colorInfo.DefaultColor4 != null)
                hl.Color4 = CreateColor(colorInfo.DefaultColor4);

            return hl;
        }
开发者ID:se7ensoft,项目名称:dnSpy,代码行数:20,代码来源:Theme.cs

示例3: CreateThemeColor

		ThemeColor CreateThemeColor(ColorType colorType) {
			var hl = new ThemeColor { Name = colorType.ToString() };

			var colorInfo = colorInfos[ToIndex(colorType)];

			if (colorInfo.DefaultForeground != null)
				hl.Foreground = CreateColor(colorInfo.DefaultForeground);

			if (colorInfo.DefaultBackground != null)
				hl.Background = CreateColor(colorInfo.DefaultBackground);

			if (colorInfo.DefaultColor3 != null)
				hl.Color3 = CreateColor(colorInfo.DefaultColor3);

			if (colorInfo.DefaultColor4 != null)
				hl.Color4 = CreateColor(colorInfo.DefaultColor4);

			return hl;
		}
开发者ID:manojdjoshi,项目名称:dnSpy,代码行数:19,代码来源:Theme.cs


注:本文中的ColorType.ToString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。