i want to play sound with click event of my button click event in my whole applciation,

i found 1 code that play sound when i click the button.

private void btn_Click(object sender, RoutedEventArgs e)
    {
        MediaPlayer mplayer = new MediaPlayer();
        mplayer.Open(new Uri("ding.wav", UriKind.Relative));
        mplayer.Play();
        //our code...
    }

i know this is not right solution, so please tell me if there are other solution, becoz i have to write this 3 line to each and every button click event and its tedious job.

please help to solve this problem.

waiting for reply...

thanks in advance

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Just define a style that plays the sound on the event PreviewMouseDown:

<Style TargetType="Button">
    <Style.Triggers>
        <EventTrigger RoutedEvent="PreviewMouseDown">
            <SoundPlayerAction Source="/ClickingButton;component/click.wav" />
        </EventTrigger>
    </Style.Triggers>
</Style>

See here for a discussion on why not to use Button.Click event in the event trigger. Basically, the problem is, that the Button.Click event is a bubbling one and the event trigger will be executed after the code in your normal click handler executed, i.e. the sound will have a delay, if your event handler does something that takes some time.

link|improve this answer
+1 for not using the click-event/doing it without code – HCL May 11 '11 at 10:58
i get error while i put this code between <windoe.Recources> tag. "Could not load file or assembly 'ClickingButton, Culture=neutral' or one of its dependencies. The system cannot find the file specified. " – Viral Sarvaiya May 11 '11 at 11:29
Sure. You need to change it to your needs... See the remarks in the MSDN for this property: msdn.microsoft.com/en-us/library/… – Daniel Hilgarth May 11 '11 at 11:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.