i'm totaly newbie with xamarin. Iknow whats is XAML file, and AXML . But i don't understood on this project ( New/ Cross plat. / Android )
The files XAML or AXML.
I have : APP.XAML and MainPage.XAML but also in layout Tabbar.axml and toolbar.axml
Running the app, the main page displays the label
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:App1"
x:Class="App1.MainPage">
**<Label Text="APP TEST HUB" **
VerticalOptions="Center"
HorizontalOptions="Center" />
But i can't acess the toolbox to designer. Openning the layout Tabbar.axml and toolbar.axml files i can acess the toolbox and work in design, but running the app this files isn't appears.
Can anyone tell me the difference of the files and his importance to the project . Where i'll work my design ?
XAML
, and there is no designer for it, there is a previewer (top left tab in the editor pane in your screen snap) – SushiHangover