GithubHelp home page GithubHelp logo

githubtest's Introduction

GitHubTest

GitHub测试1 这里面主要放资料名字或者地址,温故而知新。

多线程学习 博客园地址:http://www.cnblogs.com/JimmyZheng/archive/2012/07/07/2580253.html :http://www.cnblogs.com/doforfuture/p/6293926.html

C#组件系列——又一款Excel处理神器Spire.XLS,你值得拥有 http://www.cnblogs.com/landeanfen/p/5888973.html

c#操作数据库和批量插入数据性能比较 http://blog.csdn.net/amandag/article/details/6393697

#region 按钮点击多次事件转换为1次 public void MoreClickConvertOneClick(MoreClickEvent moreClick) { if (moreClick == null) return;

        var nowTime = DateTime.Now;
        var span = nowTime - lastClickTime;
        lastClickTime = nowTime;
        if (span.TotalMilliseconds > 300)
        {
            if (Timer != null)
            {
                Timer.Stop();
            }
            Timer = new DispatcherTimer { Interval = new TimeSpan(0, 0, 0, 0, 300) };
            Timer.Tick += (s, e1) =>
            {
                Timer.Stop();
                moreClick();
            };
            Timer.Start();
        }
        else
        {
            Timer.Stop();
            moreClick();
        }
    }
    #endregion

githubtest's People

Contributors

xh91900 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.