Pourquoi ne pas l'événement clic du bouton “bulle visual tree” à StackPanel que l'article MSDN unis?

Dans l'article MSDN La compréhension des Événements Routés et Commandes En WPF, c'états

un événement bulle (propagation) de l'arborescence visuelle à partir de la source de l'élément jusqu'à ce qu'il a été traité ou qu'il atteint l'élément racine.

Toutefois, dans cet exemple, lorsque vous cliquez sur le bouton, il n'a pas de "bulle de l'arborescence visuelle" à être géré par le parent StackPanel événement, c'est à dire en cliquant sur le bouton des feux aucun cas.

Pourquoi pas? Que signifient-ils alors par "bouillonne" si ce pas?

XAML:

<Window x:Class="TestClickEvents456.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300">
    <StackPanel x:Name="TheStackPanel"
                Background="Yellow"
                MouseDown="TheStackPanel_MouseDown">
        <Button x:Name="TheButton"
                Margin="10"
                Content="Click This"/>
        <TextBlock x:Name="TheMessage"
                   Text="Click the button or the yellow area"/>
    </StackPanel>
</Window>

code-behind:

using System.Windows;
using System.Windows.Input;

namespace TestClickEvents456
{
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();
        }

        private void TheStackPanel_MouseDown(object sender, MouseButtonEventArgs e)
        {
            TheMessage.Text = "StackPanel was clicked.";
        }

    }
}