How to open the microphone properties window when I press the button?
Nothing is built into WPF to open the microphone properties window. This is a .NET feature. Do you use C #?
If you want to open the volume control in Windows, you can simply run the executable file sndvol32.exe:
sndvol32.exe
string lWinDir = Environment.GetEnvironmentVariable("windir"); string lSndVolPath = lWinDir + @"\system32\sndvol32.exe"; Process lVolumeControl = Process.Start(lSndVolPath);
See. Also How to configure the microphone gain in C # (you must work with XP and W7) ... .
Windows XP sndvol32.exe . "-R" , "", .
sndvol32.exe -R
, Windows 7. Win 7 sndvol.exe, . , , - Sound "", :
control mmsys.cpl,,1
Source: https://habr.com/ru/post/1777666/More articles:Unable to import MySQL database due to syntax error - linuxCan SVN display information related to partial validation? - svnhow to get images for ipad custom keyboard - uikeyboardMEF Exception Exception - mefDistance between lat / long points using the Haversin formula - geometryHow to configure sandbox protection in Rhino JavaScript engine - javachanging sql view query in relational algebra? - sqlAssociation ASP.NET Script - javascriptUnderstanding Geocoding in Javascript - jqueryUITabBar Custom Colored Icons - ios4All Articles