Created
April 23, 2013 16:19
-
-
Save jtuttas/5445035 to your computer and use it in GitHub Desktop.
Powershell Klick Counter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$global:klicks=0 | |
$myF = New-Object System.Windows.Forms.Form | |
$b = New-Object System.Windows.Forms.Button | |
$l = New-Object System.Windows.Forms.Label | |
$l.Text = "Klicks 0" | |
$l.Location="10,50" | |
$b.Text="Klick mich" | |
$b.Location="10,20" | |
$l.Add_MouseHover({ | |
$global:klicks=0 | |
$l.Text="Klicks "+$global:klicks | |
}) | |
$b.Add_Click({ | |
$global:klicks++; | |
$l.Text="Klicks "+$global:klicks | |
}) | |
$myF.Controls.add($b) | |
$myF.Controls.add($l) | |
$myF.Text="Klick Counter" | |
$myF.ShowDialog(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment