Coding in xaml tutorial XAML: Xaml is a coding language using a tag format. Which means lines of code will use tags. There are two types of formats for tags open and closing used separately and the other type which opens and closes in the same tag . Example of opening and closing separately: <StackLayout></ StackLayout > Example of opening and closing in the one tag: <label /> depending on the type of tag has a different kind of use. The general layout of a mainPage.xaml file: <?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="MauiApp1.MainPage"> <ScrollView> <StackLayout> </ StackLayo...
interesting topic
ReplyDelete