|
次の事例を実行します。
#Load the GDI+ and WinForms Assemblies
[void][reflection.assembly]::LoadWithPartialName( "System.Windows.Forms")
[void][reflection.assembly]::LoadWithPartialName( "System.Drawing")
# Create pen and brush objects
$myBrush = new-object Drawing.SolidBrush green
$mypen = new-object Drawing.Pen black
# Create a Rectangle object for use when drawing rectangle
$rect = new-object Drawing.Rectangle 10, 10, 180, 180
# Create a Form
$form = New-Object Windows.Forms.Form
$Form.Text = "Sample Form Graohics (01)"
$Form.width = 216
$Form.Height = 238
# Get the form's graphics object
$formGraphics = $form.createGraphics()
# Define the paint handler
$form.add_paint(
{
$formGraphics.FillEllipse($myBrush, $rect) # draw an ellipse using rectangle object
$mypen.color = "red" # Set the pen color
$mypen.width = 5 # Set the pen line width
$formGraphics.DrawLine($mypen, 10, 10, 190, 190) # draw a line
$formGraphics.DrawLine($mypen, 190, 10, 10, 190) # draw a line
}
)
$form.ShowDialog() # display the dialog
この事例は、円弧や直線を描くため、3行目で、[void][reflection.assembly]::LoadWithPartialName( "System.Drawing") と System.Drawing をアセンブリロードしている。先頭の [void] は、ロード中のメッセージを履かないように指示しています。
6行目で、$myBrush = new-object Drawing.SolidBrush green と描画時の塗り潰し色と模様を指定するブラシを作成している。
7行目で、$mypen = new-object Drawing.Pen black と黒色のペンを作成している。
10行目で、$rect = new-object Drawing.Rectangle 10, 10, 180, 180 と四角形オブジェクトを作成している。
19行目で、$formGraphics = $form.createGraphics() とフォームに描くオブジェクトを作成している。
23〜32行で、塗り潰し円弧と直線2本を描いています。
25行目で、$formGraphics.FillEllipse($myBrush, $rect) と既に作成されている $myBrush, $rect を使用して塗り潰し円弧を描いている。
27行目で、$mypen.color = "red" とペン色を red に設定している。
28行目で、$mypen.width = 5 とペンの太さを 5 に設定している。
30行目で、$formGraphics.DrawLine($mypen, 10, 10, 190, 190) と画面の左上から右下に直線を描いている。
32行目で、$formGraphics.DrawLine($mypen, 190, 10, 10, 190) と画面の右上から左下に直線を描いている。
それ以外は、前のPowershell で、Drawing を練習する。(4/13)と同じです。
実行すると下記のような画面が表示されます。

Cancel
Cancel とは、どのイベントで終了したかを表しています。後々出てきますが、他に OK , NO , YES などがあります。
上記を実行すると
PowerShell 7.15 でも、正常(同様)に、実行されます。
PowerShell 7.4.6 でも、同様です。
|