Giter VIP home page Giter VIP logo

worktimer's Introduction

工作定时器

C#实现的工作周期控制,基于之前SoundTimer的功能添加版本。

定时静音锁屏,定时恢复。

关键代码:

using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Text; 
using System.Windows.Forms; 

using System.Runtime.InteropServices; 

namespace VolumnSet 
{ 
    public partial class Form1 : Form 
    { 

        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)] 
        static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, uint wParam, uint lParam); 
        const uint WM_APPCOMMAND = 0x319; 
        const uint APPCOMMAND_VOLUME_UP = 0x0a; 
        const uint APPCOMMAND_VOLUME_DOWN = 0x09; 
        const uint APPCOMMAND_VOLUME_MUTE = 0x08; 
        public Form1() 
        { 
            InitializeComponent(); 

        } 
        private void button1_Click(object sender, EventArgs e) 
        { 
            //加音量 
            SendMessage(this.Handle, WM_APPCOMMAND, 0x30292, APPCOMMAND_VOLUME_UP * 0x10000); 
        } 

        private void button2_Click(object sender, EventArgs e) 
        { 
            //减音量 
            SendMessage(this.Handle, WM_APPCOMMAND, 0x30292, APPCOMMAND_VOLUME_DOWN * 0x10000); 
        } 

        private void checkBox1_CheckedChanged(object sender, EventArgs e) 
        { 
            //静音 
            SendMessage(this.Handle, WM_APPCOMMAND, 0x200eb0, APPCOMMAND_VOLUME_MUTE * 0x10000); 
        } 
    } 
}

参考

C# 控制windows系统音量,静音 (加减按钮形式)

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.