Salutations;IronPython: Création et ajout d'un tableau de points à un GraphicsPath
J'ai un peu de mal à instancier correctement une instance de System.Drawing.Point, puis à ajouter le tableau de points à une instance GDI + GraphicsPath en utilisant IronPython dans une application WinForms. Le code suivant compile ou construit correctement sous SharpDevelop 3.2 avec IronPython 2.6:
import System.Drawing
import System.Drawing.Drawing2D
import System.Windows.Forms
from System import Array
from System.Drawing import Pen, Point
from System.Drawing.Drawing2D import GraphicsPath, CustomLineCap
from System.Windows.Forms import *
class MainForm(Form):
def __init__(self):
self.InitializeComponent()
def InitializeComponent(self):
self.SuspendLayout()
#
# MainForm
#
self.ClientSize = System.Drawing.Size(284, 264)
self.Name = "MainForm"
self.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
self.Text = "GDI Lines"
self.Paint += self.MainFormPaint
self.ResumeLayout(False)
def MainFormPaint(self, sender, e):
graphicContext = e.Graphics
bluePen = Pen(Color.Blue, 1)
points = Array.CreateInstance(Point, 9)
points[0] = Point(10, 10)
points[1] = Point(15, 10)
points[2] = Point(20, 15)
points[3] = Point(20, 20)
points[4] = Point(15, 25)
points[5] = Point(10, 25)
points[6] = Point(5, 20)
points[7] = Point(5, 15)
points[8] = Point(10, 10)
graphicsPath = GraphicsPath()
graphicsPath.AddLines(points)
graphicContext.SmoothingMode = SmoothingMode.AntiAlias
lineCap = CustomLineCap(nil, graphicsPath)
lineCap.BaseInset = 0
lineCap.WidthScale = 1
lineCap.StrokeJoin = LineJoin.Miter
bluePen.CustomStartCap = lineCap
bluePen.CustomEndCap = lineCap
graphicContext.DrawLine(bluePen, 50, 150, 200, 150)
graphicContext.DrawLine(bluePen, 150, 50, 150, 200)
lineCap.Dispose()
graphicsPath.Dispose()
bluePen.Dispose()
Basé sur le code ci-dessus, je me attendais à voir deux perpendicualr lignes bleues tirés, avec une petite ellipse à la fin de chaque ligne. En utilisant le code de sciption actuel ci-dessus, l'erreur d'exécution GDI + rouge X est dessinée. Qu'est-ce que je manque ou fais mal? En outre, existe-t-il une manière plus simple ou plus concise d'instancier une valeur Array of System.Drawing.Point?
Nous vous remercions d'avance pour votre temps et votre aide ...