The Main Window
You can now start your tour of an Avalonia project. We'll start with the main application window. Open the MainWindow.axaml file.
Notice that in Avalonia, XAML files have the extension .axaml (and not .xaml). This represents 'Avalonia XAML' and the file extension was introduced for technical reasons.
What is Happening?
In the MainWindow.axaml XAML file, the <Window>...</Window>
XAML tag represents an Avalonia window. Like other Avalonia controls; the window will be drawn on the target platform with 4 layout zones: margin, border, padding and content.
 (2) (1).png)
In your current application, the content zone of the window has only a simple string comprising your latest message; so that is what is displayed.
 (1) (1).png)
At this stage, you do not have a margin, border or any padding defined, so the message appears right up against the top left corner of the window.
For more information about the concept of control layout zones, see here.
The Visual Studio Designer
If you're using Visual Studio you should see the XAML code and preview pane.
 (1).png)
Notice the red exclamation icon (top left) and the message The designer is loading.... This indicates that the project must be built before the preview pane will respond.
- Build the project.
- Scroll the preview pane to the left to view the preview outline and the text displayed in the top left corner.
 (2).png)
- Locate the
Welcome to Avalonia!
message text in the XAML pane, and make a change.
You will see the new text in the preview pane change as you type. This is an example of the Avalonia design-time preview behaviour that will help you develop user interface presentation accurately and quickly.
- Run the project to see your new text also appear at runtime.
On the next page you will see how to add a simple button to the window.