博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Visual Studio 配色方案 –> DarkColorful v1.0 发布
阅读量:4565 次
发布时间:2019-06-08

本文共 2326 字,大约阅读时间需要 7 分钟。

使用方法:在Visual Studio的Tools菜单下选择导入导出设置即可。

 
darkcolorful

使用效果如下:

C#:
code
public static string Undent(string s){    int num;    string[] strArray = s.Split(new char[] { '\n' });    int startIndex = 0x7fffffff;    foreach (string str in strArray)    {        num = 0;        while ((num < str.Length) && (num < startIndex))        {            if (!char.IsWhiteSpace(str[num]))            {                startIndex = num;                break;            }            num++;        }    }    new StringBuilder();    for (num = 0; num < strArray.Length; num++)    {        if (strArray[num].Length > startIndex)        {            strArray[num] = strArray[num].Substring(startIndex);        }    }    return string.Join("\n", strArray);}

Html:

code

XML:

JavaScript:

code
$(function () {    $(".catListComment").append($("
    ")); $(".divRecentCommentAticle").each(function () { var tmp = $(this).next().html(); $(this).next().remove(); $(this).appendTo(".catListComment ul").replaceWith("
  • " + $(this).html() + "
    " + tmp + "
  • "); }); $("#mainContent, #main,.forFlow").css("min-height", $("#sideBar").height() + 300); $(".code div").click(function () { $(this).next().slideToggle('normal'); }); $(".commentform").contents().not("[nodeType=1]").remove(); $("#comment_form>p:contains('Ctrl+Enter')").nextAll().not($(".relative_search")).remove(); $("#ctl05_divCommentPannel").siblings().not($(".relative_search")).remove(); $("#ctl05_divLoginPannel").nextAll().not($(".relative_search")).remove(); $("#navList li").hover(function () { $(this).animate({ top: -20 }, 500); }, function () { $(this).animate({ top: 0 }, 500); });});

CSS:

css

感兴趣的的朋友可以从这里下载:

转载于:https://www.cnblogs.com/xushuo/archive/2010/01/03/visualstudio-settings-darkcolorful-v1.html

你可能感兴趣的文章
retinex相关代码汇总
查看>>
Cortex-M3 异常返回值EXC_RETURN
查看>>
kettle 转换字段遇到问题(couldn't get row from result set)——摘
查看>>
nginx首页根据IP跳转
查看>>
【2019-08-20】有点目标,有点计划,有点目的
查看>>
【2019-09-10】美,真的跟年龄无关
查看>>
【2019-09-28】少,但更好
查看>>
【2019-09-13】耐心观察是一种技能
查看>>
mysql数据库2-常用命令
查看>>
安卓开发环境搭建(转)
查看>>
Harris角点检测
查看>>
Struts2的处理流程及为Action的属性注入值
查看>>
设计中最常用的CSS选择器
查看>>
Maven项目打包成可执行Jar文件
查看>>
nginx http proxy 正向代理
查看>>
对BFC的总结
查看>>
23醒
查看>>
win7每天出现taskeng.exe进程的解决方案
查看>>
React Children
查看>>
大数据等最核心的关键技术:32个算法
查看>>