首页 > 其他 > 详细

定义全局变量

时间:2014-08-15 01:20:36      阅读:350      评论:0      收藏:0      [点我收藏+]

 在PS2.0下,button 可以直接调用在 checkbox里面定义的变量,如下:

$checkbox1_CheckedChanged={
#TODO: Place custom script here
if ($checkbox1.Checked) { $a= 1 }
else { $a = 0 }

}

$button1_Click={
#TODO: Place custom script here
Write-Host $a
}

当checkbox1 被选中,点击 button1按钮后,$a返回值为1;当checkbox1 未被选中,点击 button1按钮后,$a返回值为0

但是在PS3.0和4.0下,无论checkbox1 是否被选中,点击 button1按钮后,$a均没有返回值。换句话说就是无法直接调用在 checkbox里面定义的变量。

 

解决方法为定义全局变量,如下:

$Global:a = 0

$checkbox1_CheckedChanged={
#TODO: Place custom script here
if ($checkbox1.Checked) { $global:a = 1 }
else { $global:a = 0}
}

$button1_Click={
#TODO: Place custom script here
Write-Host $global:a   #此处写为 Write-Host $a 效果一样,只要在 checkbox1下定义为全局变量即可。
}

当checkbox1 被选中,点击 button1按钮后,$a返回值为1;当checkbox1 未被选中,点击 button1按钮后,$a返回值为0

定义全局变量,布布扣,bubuko.com

定义全局变量

原文:http://www.cnblogs.com/dreamer-fish/p/3913736.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!