Código XAML Vs C #
Você pode usar o XAML para criar, inicializar e definir as propriedades dos objetos. As mesmas atividades também podem ser realizadas usando código de programação.
XAML é apenas outra maneira simples e fácil de projetar elementos de interface do usuário. Com o XAML, cabe a você decidir se deseja declarar objetos em XAML ou declará-los usando código.
Vamos dar um exemplo simples para demonstrar como escrever em XAML -
<Window x:Class = "XAMLVsCode.MainWindow"
xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml" Title = "MainWindow" Height = "350" Width = "525">
<StackPanel>
<TextBlock Text = "Welcome to XAML Tutorial" Height = "20" Width = "200" Margin = "5"/>
<Button Content = "Ok" Height = "20" Width = "60" Margin = "5"/>
</StackPanel>
</Window>
Neste exemplo, criamos um painel de pilha com um Botão e um Bloco de texto e definimos algumas das propriedades do botão e do bloco de texto, como Altura, Largura e Margem. Quando o código acima for compilado e executado, ele produzirá a seguinte saída -
Agora observe o mesmo código que está escrito em C #.
using System;
using System.Text;
using System.Windows;
using System.Windows.Controls;
namespace XAMLVsCode {
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window {
public MainWindow() {
InitializeComponent();
// Create the StackPanel
StackPanel stackPanel = new StackPanel();
this.Content = stackPanel;
// Create the TextBlock
TextBlock textBlock = new TextBlock();
textBlock.Text = "Welcome to XAML Tutorial";
textBlock.Height = 20;
textBlock.Width = 200;
textBlock.Margin = new Thickness(5);
stackPanel.Children.Add(textBlock);
// Create the Button
Button button = new Button();
button.Content = "OK";
button.Height = 20;
button.Width = 50;
button.Margin = new Thickness(20);
stackPanel.Children.Add(button);
}
}
}
Quando o código acima for compilado e executado, ele produzirá a seguinte saída. Observe que é exatamente igual à saída do código XAML.
Agora você pode ver como é simples usar e entender o XAML.