1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
Add-Type -AssemblyName PresentationFramework $codigoxaml = @' <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="My First WPF Application" Height="350" Width="525"> <Grid> <Viewbox> <TextBlock Text="Hello World!" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="50" RenderTransformOrigin="0.5,0.5" FontWeight="Bold"> </TextBlock> </Viewbox> </Grid> </Window> '@ $cargar = [System.XML.XMLReader]::Create([System.IO.StringReader]$codigoxaml) $ventana = [System.Windows.Markup.XAMLReader]::Load($cargar) $ventana.ShowDialog() |