The Windows Presentation Foundation (WPF) provides an integral part of presentation, styling, and animation capabilities in a declarative language known as XAML. This tutorial introduces the basics of animating visual elements in WPF using only XAML, focusing on creating a simple application with three buttons that respond to mouse hovering over them with animations. The code defines a Style for Button elements, including properties such as background color, border thickness, and render transform, which are animated when the mouse hovers over or moves away from the element. The tutorial demonstrates how to use DoubleAnimation, ThicknessAnimation, and ColorAnimation commands to animate various properties of the buttons. With this introduction, WPF's animation capabilities become more accessible, allowing developers to create engaging user interfaces with precise control over visual effects.