Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created March 7, 2018 01:56
Show Gist options
  • Save Fhernd/5b3bb68fb00f6b7bfb2b66d0d09f900e to your computer and use it in GitHub Desktop.
Save Fhernd/5b3bb68fb00f6b7bfb2b66d0d09f900e to your computer and use it in GitHub Desktop.
OrtizOL. Ventana escrita en XAML.
<Window x:Class="R721WPFEnWindowsForms.VentanaWPF"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Ventana WPF" Height="200" Width="300">
<StackPanel Margin="20">
<TextBlock FontSize="20" Text="Ventana WPF" TextAlignment="Center"/>
<Button Click="btnCerrar_Click" Content="Cerrar" Margin="50"
MaxWidth="50" x:Name="btnCerrar" />
</StackPanel>
</Window>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment