Skip to main content
Version: 11.0.x

Developer Tools

Avalonia has a built-in DevTools window which is enabled by calling the attached AttachDevTools() method in a Window constructor. The default templates have this enabled when the program is compiled in DEBUG mode:

public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}

// in auto-generated by Avalonia.NameGenerator MainWindow.g.cs:
partial class MainWindow
{
// ...
public void InitializeComponent(bool loadXaml = true, bool attachDevTools = true)
{
// ...
#if DEBUG
if (attachDevTools)
{
this.AttachDevTools();
}
#endif
// ...
}
}

To open the DevTools, press F12, or pass a different Gesture to the this.AttachDevTools() method.

info

To use DevTools, you must add Avalonia.Diagnostics nuget package.

dotnet add package Avalonia.Diagnostics --version 11.0.0

But by default, it is already installed.

There is a known issue when running under .NET core 2.1 that pressing F12 will cause the program to quit. In this case, either switch to .NET core 2.0 or 3.0+ or change the open gesture to something different, such as Ctrl+F12.

Logical and Visual Trees

The Logical Tree and Visual Tree tabs display the controls in the window's logical and visual trees. Selecting a control will show the properties of that control in the right-hand pane where they can be edited.

Properties

Allows for quickly checking and editing properties of the control. One can also search for properties (by name or by using a regex).

ColumnDescription
PropertyName of the property
ValueCurrent value of the property
TypeType of the current value
PriorityPriority of the value

Layout

Allows for inspecting and editing of common layout properties (Margin, Border , Padding).
Control size and size constraints are also shown.

info

If Width or Height are underlined that means there is an active constraint. Hover over the value to see a tooltip containing relevant information.

Styles

While properties panel shows currently active values of properties, styles panel shows all values and origin of the value.

Additionally one can see all styles that could potentially match this control (by toggling Show inactive option).

Current styles can be snap-shotted by either pressing the Snapshot button or pressing Alt+S while hovering over the target window. Snap-shotting means that styles panel won't update to reflect new state of the control. This is especially useful when troubleshooting problems with :pointerover or :pressed selectors.

info

If setter value is bound to a resource it will be indicated by a circle followed by the resource key.

info

If given value has a strikethrough it means that it is being overridden by a value in style with higher priority.

Setters have a context menu that allows for quickly copying names and values to the clipboard.

Events

The events tab can be used to track the propagation of events. Select the events to track in the left pane, and all events of that type will be shown in the center upper pane. Select one of these events to see the event route.

info

Dotted underline under event name or control type indicates that quick navigation is possible.

  • Double clicking an event type will select and scroll to the given event type
  • Double clicking a control type (and/or name) will navigate to the visual tree tab and select said control.

Hotkeys

Keys CombinationFunction
Alt+SEnable Snapshot Styles
Alt+DDisable Snapshot Styles
CTRL+ShiftInspect Control over Pointer
CTRL+Alt+FToggle Popup freeze
F8Make screenshot of selected item in Logical or Visual Tree

Examples

Changing a property value

Changing layout properties