Use Window Activated and Deactivated event to control a media file
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Custom Media Player" Activated="window_Activated" Deactivated="window_Deactivated" Closing="window_Closing">
//File:Window.xaml.cs using System; using System.ComponentModel; using System.Windows; public partial class CustomMediaPlayerWindow : Window { public CustomMediaPlayerWindow() { InitializeComponent(); } bool isMediaElementPlaying;