资源简介

调节电脑声音,并调出电脑音量显示条,实时显示

资源截图

代码片段和文件信息

using CoreAudioApi;
using SuperClassServer;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;

namespace PCVolumeControl
{
   /// 
   /// 电脑音量控制类
   /// 

   public static class VolumeControl
    {     
        /// 
        /// volume -2 静音 -1解除静音
        /// 

        /// 
        public static void SetVolume(int volume)
        {
            if (volume == -2)
            {
                Mute();
            }
            if (volume >= 0)
            {
                SetSYSTEMVolume(volume);
            }
        }
        #region 控制系统的声音
        [DllImport(“user32.dll“)]
        static e

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        5243  2019-06-12 11:01  VolumeControl.cs

评论

共有 条评论