4 responses to “ShowUI: the tutorial walkthrough”

  1. I Presented PowerShell for .NET Developers

    [...] ShowUI: the tutorial walkthrough [...]

  2. New-SimpleForm – Holy dynamic GUI Batman! « Tome's Land of IT

    [...] the amazing tutorial that Joel “Jaykul” Bennet put up on his site (to be honest – this is as far as [...]

  3. Thiyagu

    Hi Jaykul,
    Why is this not working?

    New-Window -Height 100 -Width 300 -Show `
    -Content{
    New-UniformGrid -Column 2 -Children {
    New-TextBox -ControlName “textbox1” -Text “Thiyagu” -FontSize 20
    New-Button -ControlName “button1” -Content “Click Me” -FontFamily Tahoma -FontSize 20 -On_Click{
    $textbox2.Text = $textbox1.text}
    New-TextBox -ControlName textbox2 -Text “Empty” -FontSize 20 -Background Yellow
    New-TextBox -ControlName textbox3 -Text “Empty” -FontSize 20 -Background Green
    }
    }

    thanks
    Thiyagu

  4. Thiyagu

    thanks Jaykul, that worked, i am waiting for more of your tutorials, i will also blog my lessions learned using Showui soon.
    can you also post something for databinding .
    cheers
    Thiyagu