c# - How do I check the system volume? -
how can check , change system volume in windows using c#, so:
if(systemvolume.vol == 0){ systemvolume.vol = 100; }
look concept of "audio sessions" in windows. there interfaces suggested following link, namely isimpleaudiovolume
, ichannelaudiovolume
, , iaudiostreamvolume
interfaces.
the code examples given in c++ though, should useful.
Comments
Post a Comment