FrameworkDispatcher.Update has not been called. Regular FrameworkDispatcher.Update calls are necessary for fire and forget sound effects and framework events to function correctly.
Error have in button1_Click(object sender, RoutedEventArgs e)
Can you give me a hint?
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Text;
using System.Threading;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using System.Windows.Threading;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using System.IO;
using System.IO.IsolatedStorage;
namespace InfoKup2013
{
public partial class MainPage : PhoneApplicationPage
{
private Microphone microphone = Microphone.Default;
private byte[] buffer;
private MemoryStream stream = new MemoryStream();
private SoundEffect sound;
void timer_Tick(object sender, EventArgs e)
{
// text_block1.Text = DateTime.Now.Second.ToString();
// int b =
// timera.Stop();
}
public MainPage()
{
InitializeComponent();
microphone.BufferReady += (object sender, EventArgs e) =>
{
microphone.GetData(buffer);
stream.Write(buffer, 0, buffer.Length);
};
}
private void button1_Click(object sender, RoutedEventArgs e)
{
microphone.BufferDuration = TimeSpan.FromMilliseconds(1000);
buffer = new byte[microphone.GetSampleSizeInBytes(microphone.BufferDuration)];
microphone.Start();
}
private void button2_Click(object sender, RoutedEventArgs e)
{
if (microphone.State == MicrophoneState.Started)
{
microphone.Stop();
//PageTitle.Text = "stop";
}
else
{
//PageTitle.Text = "ready";
}
MessageBox.Show("Dario Sindicic, Lovro Sindicic, Croatia, InfoKup 2013, Imagine cup");
//StopRecording();
}
private void button3_Click(object sender, RoutedEventArgs e)
{
sound = new SoundEffect(stream.ToArray(), microphone.SampleRate, AudioChannels.Mono);
sound.Play();
}
private void button4_Click(object sender, RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("/uredaji.xaml", UriKind.Relative));
}
}
}