From: SourceForge.net <no...@so...> - 2006-04-13 04:34:08
|
Bugs item #1469622, was opened at 2006-04-13 05:34 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=446780&aid=1469622&group_id=46621 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: SVG DOM Group: None Status: Open Resolution: None Priority: 5 Submitted By: Francisco Pires (mendz) Assigned to: Nobody/Anonymous (nobody) Summary: renderengine dll crash Initial Comment: SvgWindow window = (SvgWindow)svgPictureBox.Window; svgPictureBox.LoadXml("<svg xmlns='http://www.w3.org/2000/svg'/>"); I'm doing this piece of code on my form constructor, and i have the following windows form initialization: this.svgPictureBox.AutoSize = true; this.svgPictureBox.Dock = System.Windows.Forms.DockStyle.Fill; this.svgPictureBox.Location = new System.Drawing.Point(0, 0); this.svgPictureBox.Name = "svgPictureBox"; this.svgPictureBox.Size = new System.Drawing.Size(624, 381); this.svgPictureBox.Surface = null; this.svgPictureBox.TabIndex = 25; when i minimize the window, a nullpointerexception is thrown at GraphicsNode.BeforeRender(ISvgRenderer renderer) overriden method. More exactly, at the following line: graphicsContainer = graphics.BeginContainer(); ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=446780&aid=1469622&group_id=46621 |