[svg-developers] Re: Need help on SVG#

2006-02-04 Thread scasquiov
There is a windows application included in the source code that provides some good examples. This post may also help a little: http://groups.yahoo.com/group/svg-developers/message/47440 Cheers, Scasquiov --- In svg-developers@yahoogroups.com, bsedigh_79 [EMAIL PROTECTED] wrote: hi all

[svg-developers] SVG, FOP and .NET

2005-06-13 Thread scasquiov
SharpVectorGraphics. I tried checking out this second option, but am starting to face some difficulties Does anyone know of such similar initiatives? is there an easier way of achieving this? thanks in advance, Scasquiov - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http

[svg-developers] Re: Anyone know how to display SVG in win32 form using .NET?

2005-04-14 Thread scasquiov
hi, Try svg#: http://www.sharpvectors.org/ The latest CVS version has a lot of improvements, I suggest you get that one. Cheers, - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership Yahoo!

[svg-developers] Re: Anyone know how to display SVG in win32 form using .NET?

2005-04-14 Thread scasquiov
Or even embed adobe's SVG viewer in your application (without the need for IE). something along these lines: http://www.mecxpert.de/svg/SvgDotNet.html Beware of licensing issues though. --- In svg-developers@yahoogroups.com, [EMAIL PROTECTED] wrote: The SVG# would be my preference,

[svg-developers] Re: SVG#, examples and interactivity

2005-02-06 Thread scasquiov
Thanks for the reply. I will probably need to use the transform functions but not just yet. Meanwhile, rendering was taking to long so I made a little digging :) ended up making a minor change with a performance gain of at least 500% in rendering my test SVG :) It would be great

[svg-developers] Re: SVG#, examples and interactivity

2005-02-06 Thread scasquiov
Hi, You need to reference the following dlls: SharpVectorBindings.dll SharpVectorCss.dll SharpVectorDom.dll SharpVectorObjectModel.dll SharpVectorRenderingEngine.dll SharpVectorScripting.dll SharpVectorXml.dll SharpZipLib.dll

[svg-developers] Re: SVG#, examples and interactivity

2005-02-06 Thread scasquiov
project since I am not using nunit to do the unit testing? PinYiow scasquiov [EMAIL PROTECTED] wrote: Hi, You need to reference the following dlls: SharpVectorBindings.dll SharpVectorCss.dll SharpVectorDom.dll SharpVectorObjectModel.dll

[svg-developers] Re: svg viewer for .NET

2005-02-04 Thread scasquiov
Hi, ?? .NET usually runs on the server (depending on whether you include the CLR in your definition), and SVG is usually rendered in the web browser, true...? (...) You can generate SVG-style XML with many types of server software. Once you've got a valid SVG file, then it should be

[svg-developers] SVG#, examples and interactivity

2005-02-04 Thread scasquiov
Where might I find examples and/or documentation on SharpVectorGraphics? I will be using it to show an SVG in my C# app but I will also need some interaction. For example, when clicking a certain element it should become highlighted by changing its color. I've read about this being possible

[svg-developers] Re: Using SVG in a .NET application

2005-01-25 Thread scasquiov
great work! I got the CVS version and i must say, it looks quite promising. I'll play with it in the next few days. thanks --- In svg-developers@yahoogroups.com, Jeff Rafter [EMAIL PROTECTED] wrote: I've been trying to use SVG in a C# application and have succeeded in presenting a

[svg-developers] Using SVG in a .NET application

2005-01-24 Thread scasquiov
I've been trying to use SVG in a C# application and have succeeded in presenting a SVG image with the sharpvectorgraphics library (been using an image of a graph actually). But now I would like to add some interactivity, making it possible for the user to select or move each of my graph's node