I m 调查控制卷量的不同方法,我似乎没有设置媒体宣传员。 载于我的Windows Telephone 7.1应用程序。 基本上,呼吁
MediaPlayer.Volume = value;
无效果,叫媒体宣传员。 IsMuted = TRUE没有效果。
例:
public MainPage()
{
InitializeComponent();
//Play a song from the collection
FrameworkDispatcher.Update();
MediaPlayer.Play(ml.Artists[0].Songs[0]);
}
private void Button_Click(object sender, RoutedEventArgs e)
{
//Reduce volume to 0
FrameworkDispatcher.Update();
MediaPlayer.Volume = 0.0f;
//If I set a breakpoint here, MediaPlayer.Volume is 1.0
}
private void Button_Click_1(object sender, RoutedEventArgs e)
{
//This also has no effect...
FrameworkDispatcher.Update();
MediaPlayer.IsMuted = !MediaPlayer.IsMuted;
}
是否有任何人知道我误解这一简单的事实?