J
if ($?) {}, но лучше каэш по шишкину
Size: a a a
J
if ($?) {}, но лучше каэш по шишкину
IB
function PrintRadioButton {
param (
[PARAMETER(Mandatory=$True)] [string] $label,
[PARAMETER(Mandatory=$True)] [string] $location
)
$RadioButton = New-Object System.Windows.Forms.RadioButton
$RadioButton.Location = $location
$RadioButton.size = '200,20'
$RadioButton.Text = $label
$window_form.Controls.Add($RadioButton)
}
PrintRadioButton -la "Label 1" -lo "20,0"
PrintRadioButton -la "Label 2" -lo "20,20"
IB
AF
function PrintRadioButton {
param (
[PARAMETER(Mandatory=$True)] [string] $label,
[PARAMETER(Mandatory=$True)] [string] $location
)
$RadioButton = New-Object System.Windows.Forms.RadioButton
$RadioButton.Location = $location
$RadioButton.size = '200,20'
$RadioButton.Text = $label
$window_form.Controls.Add($RadioButton)
}
PrintRadioButton -la "Label 1" -lo "20,0"
PrintRadioButton -la "Label 2" -lo "20,20"
WW
if ($?) {}, но лучше каэш по шишкину
IB
AF
as
as
AS
as
AS
as
as
IB
J
J