Windows Vista Forums
Vista Forums Home Join Vista Forums Donate Vista Tutorials Tags

Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
Register at Vista forums...the world biggest Windows Vista resource Join Vista Forums Now

Go Back   Vista Forums > Microsoft Technical Newsgroups > Avalon

Drawing Line on Canvas

Closed Thread
 
Thread Tools Display Modes
Old 11-03-2006   #1 (permalink)
john
Guest


 

Drawing Line on Canvas

All:

OK - I know this seems like a ridiculously simply question, but I
cannot find an answer. In the "old days" of Windows programming (the
old days include .NET 2.0 Forms), one could somehow obtain a graphics
context, e.g., CreateGraphics() and draw on a form, etc.

How do you do the same thing in WPF (Windows Presentation Foundation)?
I am simply trying to draw (render) a line on a Canvas - that's it.

There does seem to be an equivalent of CreateGraphics() or GetDC() or
GetDrawingContext() - or anything one would naturally assume to be
present in an API of this type.

Examples?

Thank you,
jpuopolo

Old 11-04-2006   #2 (permalink)
Bob
Guest


 

Re: Drawing Line on Canvas

In article <1162607686.882875.230630@m7g2000cwm.googlegroups.com>,
puopolo@gmail.com says...
> All:
>
> OK - I know this seems like a ridiculously simply question, but I
> cannot find an answer. In the "old days" of Windows programming (the
> old days include .NET 2.0 Forms), one could somehow obtain a graphics
> context, e.g., CreateGraphics() and draw on a form, etc.
>
> How do you do the same thing in WPF (Windows Presentation Foundation)?
> I am simply trying to draw (render) a line on a Canvas - that's it.
>
> There does seem to be an equivalent of CreateGraphics() or GetDC() or
> GetDrawingContext() - or anything one would naturally assume to be
> present in an API of this type.
>
> Examples?
>
> Thank you,
> jpuopolo
>
>


Have a look at the SDK Documentation
(http://windowssdk.msdn.microsoft.com/en-
us/library/system.windows.media.drawingcontext.aspx) for the
DrawingContext class, especially the remarks which explain (in addition
to its differences with the old school device context):

"When you use a DrawingContext object's draw commands, you are actually
storing a set of rendering instructions (although the exact storage
mechanism depends on the type of object that supplies the
DrawingContext) that will later be used by the graphics system; you are
not drawing to the screen in real-time."
----
for just basic "line on a canvas...
From the SDK Documentation's "How to: Draw a Line"...

<Canvas Height="300" Width="300">

<!-- Draws a diagonal line from (10,10) to (50,50). -->
<Line
X1="10" Y1="10"
X2="50" Y2="50"
Stroke="Black"
StrokeThickness="4" />

<!-- Draws a diagonal line from (10,10) to (50,50)
and moves it 100 pixels to the right. -->
<Line
X1="10" Y1="10"
X2="50" Y2="50"
StrokeThickness="4"
Canvas.Left="100">
<Line.Stroke>
<RadialGradientBrush GradientOrigin="0.5,0.5" Center="0.5,0.5"
RadiusX="0.5" RadiusY="0.5">
<RadialGradientBrush.GradientStops>
<GradientStop Color="Red" Offset="0" />
<GradientStop Color="Blue" Offset="0.25" />
</RadialGradientBrush.GradientStops>
</RadialGradientBrush>
</Line.Stroke>
</Line>

<!-- Draws a horizontal line from (10,60) to (150,60). -->
<Line
X1="10" Y1="60"
X2="150" Y2="60"
Stroke="Black"
StrokeThickness="4"/>

</Canvas>

------------

// Add a Line Element
myLine = new Line();
myLine.Stroke = Brushes.LightSteelBlue;
myLine.X1 = 1;
myLine.X2 = 50;
myLine.Y1 = 1;
myLine.Y2 = 50;
myLine.HorizontalAlignment = HorizontalAlignment.Left;
myLine.VerticalAlignment = VerticalAlignment.Center;
myLine.StrokeThickness = 2;
myGrid.Children.Add(myLine);

-----------
Old 11-04-2006   #3 (permalink)
Bob
Guest


 

Re: Drawing Line on Canvas

In article <1162607686.882875.230630@m7g2000cwm.googlegroups.com>,
puopolo@gmail.com says...
> All:
>
> OK - I know this seems like a ridiculously simply question, but I
> cannot find an answer. In the "old days" of Windows programming (the
> old days include .NET 2.0 Forms), one could somehow obtain a graphics
> context, e.g., CreateGraphics() and draw on a form, etc.
>
> How do you do the same thing in WPF (Windows Presentation Foundation)?
> I am simply trying to draw (render) a line on a Canvas - that's it.
>
> There does seem to be an equivalent of CreateGraphics() or GetDC() or
> GetDrawingContext() - or anything one would naturally assume to be
> present in an API of this type.
>
> Examples?
>
> Thank you,
> jpuopolo
>
>


Have a look at the SDK Documentation
(http://windowssdk.msdn.microsoft.com/en-
us/library/system.windows.media.drawingcontext.aspx) for the
DrawingContext class, especially the remarks which explain (in addition
to its differences with the old school device context):

"When you use a DrawingContext object's draw commands, you are actually
storing a set of rendering instructions (although the exact storage
mechanism depends on the type of object that supplies the
DrawingContext) that will later be used by the graphics system; you are
not drawing to the screen in real-time."
----
for just basic "line on a canvas...
From the SDK Documentation's "How to: Draw a Line"...

<Canvas Height="300" Width="300">

<!-- Draws a diagonal line from (10,10) to (50,50). -->
<Line
X1="10" Y1="10"
X2="50" Y2="50"
Stroke="Black"
StrokeThickness="4" />

<!-- Draws a diagonal line from (10,10) to (50,50)
and moves it 100 pixels to the right. -->
<Line
X1="10" Y1="10"
X2="50" Y2="50"
StrokeThickness="4"
Canvas.Left="100">
<Line.Stroke>
<RadialGradientBrush GradientOrigin="0.5,0.5" Center="0.5,0.5"
RadiusX="0.5" RadiusY="0.5">
<RadialGradientBrush.GradientStops>
<GradientStop Color="Red" Offset="0" />
<GradientStop Color="Blue" Offset="0.25" />
</RadialGradientBrush.GradientStops>
</RadialGradientBrush>
</Line.Stroke>
</Line>

<!-- Draws a horizontal line from (10,60) to (150,60). -->
<Line
X1="10" Y1="60"
X2="150" Y2="60"
Stroke="Black"
StrokeThickness="4"/>

</Canvas>

------------

// Add a Line Element
myLine = new Line();
myLine.Stroke = Brushes.LightSteelBlue;
myLine.X1 = 1;
myLine.X2 = 50;
myLine.Y1 = 1;
myLine.Y2 = 50;
myLine.HorizontalAlignment = HorizontalAlignment.Left;
myLine.VerticalAlignment = VerticalAlignment.Center;
myLine.StrokeThickness = 2;
myGrid.Children.Add(myLine);

-----------
Old 11-04-2006   #4 (permalink)
john
Guest


 

Re: Drawing Line on Canvas

Bob:

Thanks - works like a charm.

Best,
John

Bob wrote:
> In article <1162607686.882875.230630@m7g2000cwm.googlegroups.com>,
> puopolo@gmail.com says...
> > All:
> >
> > OK - I know this seems like a ridiculously simply question, but I
> > cannot find an answer. In the "old days" of Windows programming (the
> > old days include .NET 2.0 Forms), one could somehow obtain a graphics
> > context, e.g., CreateGraphics() and draw on a form, etc.
> >
> > How do you do the same thing in WPF (Windows Presentation Foundation)?
> > I am simply trying to draw (render) a line on a Canvas - that's it.
> >
> > There does seem to be an equivalent of CreateGraphics() or GetDC() or
> > GetDrawingContext() - or anything one would naturally assume to be
> > present in an API of this type.
> >
> > Examples?
> >
> > Thank you,
> > jpuopolo
> >
> >

>
> Have a look at the SDK Documentation
> (http://windowssdk.msdn.microsoft.com/en-
> us/library/system.windows.media.drawingcontext.aspx) for the
> DrawingContext class, especially the remarks which explain (in addition
> to its differences with the old school device context):
>
> "When you use a DrawingContext object's draw commands, you are actually
> storing a set of rendering instructions (although the exact storage
> mechanism depends on the type of object that supplies the
> DrawingContext) that will later be used by the graphics system; you are
> not drawing to the screen in real-time."
> ----
> for just basic "line on a canvas...
> From the SDK Documentation's "How to: Draw a Line"...
>
> <Canvas Height="300" Width="300">
>
> <!-- Draws a diagonal line from (10,10) to (50,50). -->
> <Line
> X1="10" Y1="10"
> X2="50" Y2="50"
> Stroke="Black"
> StrokeThickness="4" />
>
> <!-- Draws a diagonal line from (10,10) to (50,50)
> and moves it 100 pixels to the right. -->
> <Line
> X1="10" Y1="10"
> X2="50" Y2="50"
> StrokeThickness="4"
> Canvas.Left="100">
> <Line.Stroke>
> <RadialGradientBrush GradientOrigin="0.5,0.5" Center="0.5,0.5"
> RadiusX="0.5" RadiusY="0.5">
> <RadialGradientBrush.GradientStops>
> <GradientStop Color="Red" Offset="0" />
> <GradientStop Color="Blue" Offset="0.25" />
> </RadialGradientBrush.GradientStops>
> </RadialGradientBrush>
> </Line.Stroke>
> </Line>
>
> <!-- Draws a horizontal line from (10,60) to (150,60). -->
> <Line
> X1="10" Y1="60"
> X2="150" Y2="60"
> Stroke="Black"
> StrokeThickness="4"/>
>
> </Canvas>
>
> ------------
>
> // Add a Line Element
> myLine = new Line();
> myLine.Stroke = Brushes.LightSteelBlue;
> myLine.X1 = 1;
> myLine.X2 = 50;
> myLine.Y1 = 1;
> myLine.Y2 = 50;
> myLine.HorizontalAlignment = HorizontalAlignment.Left;
> myLine.VerticalAlignment = VerticalAlignment.Center;
> myLine.StrokeThickness = 2;
> myGrid.Children.Add(myLine);
>
> -----------


Old 11-04-2006   #5 (permalink)
john
Guest


 

Re: Drawing Line on Canvas

Bob:

Thanks - works like a charm.

Best,
John

Bob wrote:
> In article <1162607686.882875.230630@m7g2000cwm.googlegroups.com>,
> puopolo@gmail.com says...
> > All:
> >
> > OK - I know this seems like a ridiculously simply question, but I
> > cannot find an answer. In the "old days" of Windows programming (the
> > old days include .NET 2.0 Forms), one could somehow obtain a graphics
> > context, e.g., CreateGraphics() and draw on a form, etc.
> >
> > How do you do the same thing in WPF (Windows Presentation Foundation)?
> > I am simply trying to draw (render) a line on a Canvas - that's it.
> >
> > There does seem to be an equivalent of CreateGraphics() or GetDC() or
> > GetDrawingContext() - or anything one would naturally assume to be
> > present in an API of this type.
> >
> > Examples?
> >
> > Thank you,
> > jpuopolo
> >
> >

>
> Have a look at the SDK Documentation
> (http://windowssdk.msdn.microsoft.com/en-
> us/library/system.windows.media.drawingcontext.aspx) for the
> DrawingContext class, especially the remarks which explain (in addition
> to its differences with the old school device context):
>
> "When you use a DrawingContext object's draw commands, you are actually
> storing a set of rendering instructions (although the exact storage
> mechanism depends on the type of object that supplies the
> DrawingContext) that will later be used by the graphics system; you are
> not drawing to the screen in real-time."
> ----
> for just basic "line on a canvas...
> From the SDK Documentation's "How to: Draw a Line"...
>
> <Canvas Height="300" Width="300">
>
> <!-- Draws a diagonal line from (10,10) to (50,50). -->
> <Line
> X1="10" Y1="10"
> X2="50" Y2="50"
> Stroke="Black"
> StrokeThickness="4" />
>
> <!-- Draws a diagonal line from (10,10) to (50,50)
> and moves it 100 pixels to the right. -->
> <Line
> X1="10" Y1="10"
> X2="50" Y2="50"
> StrokeThickness="4"
> Canvas.Left="100">
> <Line.Stroke>
> <RadialGradientBrush GradientOrigin="0.5,0.5" Center="0.5,0.5"
> RadiusX="0.5" RadiusY="0.5">
> <RadialGradientBrush.GradientStops>
> <GradientStop Color="Red" Offset="0" />
> <GradientStop Color="Blue" Offset="0.25" />
> </RadialGradientBrush.GradientStops>
> </RadialGradientBrush>
> </Line.Stroke>
> </Line>
>
> <!-- Draws a horizontal line from (10,60) to (150,60). -->
> <Line
> X1="10" Y1="60"
> X2="150" Y2="60"
> Stroke="Black"
> StrokeThickness="4"/>
>
> </Canvas>
>
> ------------
>
> // Add a Line Element
> myLine = new Line();
> myLine.Stroke = Brushes.LightSteelBlue;
> myLine.X1 = 1;
> myLine.X2 = 50;
> myLine.Y1 = 1;
> myLine.Y2 = 50;
> myLine.HorizontalAlignment = HorizontalAlignment.Left;
> myLine.VerticalAlignment = VerticalAlignment.Center;
> myLine.StrokeThickness = 2;
> myGrid.Children.Add(myLine);
>
> -----------


Old 11-06-2006   #6 (permalink)
Robin Davies
Guest


 

Re: Drawing Line on Canvas

Old-world-style, you can also override OnRender. Looks like old-world DC
rendering, feels like old-world DC rendering, but it isn't. And it works
perfectly well. You can mix-and-match xaml and OnRender rendering as well.

My feeling: xaml is great, but sooner or later you'll need to render to a DC
directly.

> "john" wrote:


> Bob:
>
> Thanks - works like a charm.
>
> Best,
> John
>
> Bob wrote:
> > In article <1162607686.882875.230630@m7g2000cwm.googlegroups.com>,
> > puopolo@gmail.com says...
> > > All:
> > >
> > > OK - I know this seems like a ridiculously simply question, but I
> > > cannot find an answer. In the "old days" of Windows programming (the
> > > old days include .NET 2.0 Forms), one could somehow obtain a graphics
> > > context, e.g., CreateGraphics() and draw on a form, etc.
> > >
> > > How do you do the same thing in WPF (Windows Presentation Foundation)?
> > > I am simply trying to draw (render) a line on a Canvas - that's it.
> > >
> > > There does seem to be an equivalent of CreateGraphics() or GetDC() or
> > > GetDrawingContext() - or anything one would naturally assume to be
> > > present in an API of this type.
> > >
> > > Examples?
> > >
> > > Thank you,
> > > jpuopolo
> > >
> > >

> >
> > Have a look at the SDK Documentation
> > (http://windowssdk.msdn.microsoft.com/en-
> > us/library/system.windows.media.drawingcontext.aspx) for the
> > DrawingContext class, especially the remarks which explain (in addition
> > to its differences with the old school device context):
> >
> > "When you use a DrawingContext object's draw commands, you are actually
> > storing a set of rendering instructions (although the exact storage
> > mechanism depends on the type of object that supplies the
> > DrawingContext) that will later be used by the graphics system; you are
> > not drawing to the screen in real-time."
> > ----
> > for just basic "line on a canvas...
> > From the SDK Documentation's "How to: Draw a Line"...
> >
> > <Canvas Height="300" Width="300">
> >
> > <!-- Draws a diagonal line from (10,10) to (50,50). -->
> > <Line
> > X1="10" Y1="10"
> > X2="50" Y2="50"
> > Stroke="Black"
> > StrokeThickness="4" />
> >
> > <!-- Draws a diagonal line from (10,10) to (50,50)
> > and moves it 100 pixels to the right. -->
> > <Line
> > X1="10" Y1="10"
> > X2="50" Y2="50"
> > StrokeThickness="4"
> > Canvas.Left="100">
> > <Line.Stroke>
> > <RadialGradientBrush GradientOrigin="0.5,0.5" Center="0.5,0.5"
> > RadiusX="0.5" RadiusY="0.5">
> > <RadialGradientBrush.GradientStops>
> > <GradientStop Color="Red" Offset="0" />
> > <GradientStop Color="Blue" Offset="0.25" />
> > </RadialGradientBrush.GradientStops>
> > </RadialGradientBrush>
> > </Line.Stroke>
> > </Line>
> >
> > <!-- Draws a horizontal line from (10,60) to (150,60). -->
> > <Line
> > X1="10" Y1="60"
> > X2="150" Y2="60"
> > Stroke="Black"
> > StrokeThickness="4"/>
> >
> > </Canvas>
> >
> > ------------
> >
> > // Add a Line Element
> > myLine = new Line();
> > myLine.Stroke = Brushes.LightSteelBlue;
> > myLine.X1 = 1;
> > myLine.X2 = 50;
> > myLine.Y1 = 1;
> > myLine.Y2 = 50;
> > myLine.HorizontalAlignment = HorizontalAlignment.Left;
> > myLine.VerticalAlignment = VerticalAlignment.Center;
> > myLine.StrokeThickness = 2;
> > myGrid.Children.Add(myLine);
> >
> > -----------

>
>

Closed Thread

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Canvas does not allow drawing PhredBear Vista General 2 3 Weeks Ago 02:07 PM
Line drawing function calls in Windows??? Zilla Vista General 1 06-08-2008 12:47 PM
Drawing Line on Canvas john Avalon 0 11-03-2006 08:34 PM
Canvas.GetLeft is NaN NetronProject@gmail.com Avalon 1 06-07-2006 06:00 PM
3D, Canvas, and Databinding Christopher Bennage Avalon 5 05-31-2006 02:34 PM








Vistax64.com is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media 2005-2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50