Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4555730
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T17:16:01+00:00 2026-05-21T17:16:01+00:00

I just tested an early PowerShell WPF example from here #requires -version 2 Add-Type

  • 0

I just tested an early PowerShell WPF example from here

#requires -version 2

Add-Type -AssemblyName PresentationFramework

[xml] $xaml = @"
<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="408">
    <Canvas>
        <Button x:Name="button1"
          Width="75"
          Height="23"
          Canvas.Left="118"
          Canvas.Top="10"
          Content="Click Here" />
    </Canvas>
</Window>
"@

$reader=(New-Object System.Xml.XmlNodeReader $xaml)
$target=[Windows.Markup.XamlReader]::Load($reader)

$window= $target.FindName("Window")
$control=$target.FindName("button1")

$eventMethod=$control."add_click"
$eventMethod.Invoke({$window.Title="Hello $((Get-Date).ToString('G'))"})

$target.ShowDialog() | out-null

FindName seems to return $null here. I found some posts indicating, that RegisterName is needed, but I have no idea, how to apply this here.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T17:16:02+00:00Added an answer on May 21, 2026 at 5:16 pm

    As far as I understand your $target is your window.
    Can you try :

    Clear-Host
    $reader=(New-Object System.Xml.XmlNodeReader $xaml)
    [System.Windows.Window]$Window=[Windows.Markup.XamlReader]::Load($reader)
    $Window.Title = "Bonjour"
    $controls=$Window.Content
    [System.Windows.Controls.Button]$Button = ($controls.Children)[0]
    $eventMethod=$Button.add_Click
    $eventMethod.Invoke({$window.Title="Hello $((Get-Date).ToString('G'))"})
    $Window.ShowDialog() | out-null
    

    ————- EDIT ————-

    Here is the code working with FindName I replace Canvas by Grid :

    #requires -version 2
    Add-Type -AssemblyName PresentationFramework
    [xml]$xaml = 
    @"
    <Window
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      Title="Window1" Height="300" Width="408">
        <Grid>
          <Button x:Name="button1"
                    Width="75"
                    Height="23"
                    Canvas.Left="118"
                    Canvas.Top="10"
                    Content="Click Here" />
        </Grid>
    </Window>
    "@
    
    Clear-Host
    $reader=(New-Object System.Xml.XmlNodeReader $xaml)
    $target=[Windows.Markup.XamlReader]::Load($reader)
    $control=$target.FindName("button1")
    $eventMethod=$control.add_click
    $eventMethod.Invoke({$target.Title="Hello $((Get-Date).ToString('G'))"})
    $target.ShowDialog() | out-null 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just tested which type of code is executed by the WinForms Designer in
Just looking for the first step basic solution here that keeps the honest people
Just how much slower are events? I have written a streaming XML parser (that
I just tested Geolocation on Firefox 3.6 and iPhone Safari (os 3.1.3), the result
I just tested and redeployed my application to a test instance, and it worked
I just tested the backspace escape as follows: System.out.println(Hello\b); I expected to get the
I've just tested locally my web application, everything works fine, but after uploading to
I've just tested this and it seems that Ajax requests send the cookie header
We just recently migrated our web application from .NET 1.1 to .NET 2.0. The
Just what the title says, I need to change the password for an existing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.