Rsvg.Tool Class
Documentation for this section has not yet been entered.

See Also: Tool Members

Syntax

public class Tool

Remarks

C# Example

using System;
using Gtk;

class SvgHelloWorld
{
	static void Main (string[] args)
	{
		Application.Init ();
		MyMainWindow app = new MyMainWindow ();
		app.ShowAll ();
		Application.Run ();
	}
}

class MyMainWindow : Gtk.Window
{
	public MyMainWindow () : base ("SVG Hello World")
	{
		this.DeleteEvent += new DeleteEventHandler (delete_event);
		string svg_file_name = "sample.svg";
		Gdk.Pixbuf pixbuf = Rsvg.Tool.PixbufFromFile (svg_file_name);
		Image image = new Image ();
		image.Pixbuf = pixbuf;
		this.Add (image);
	}

	private void delete_event (object obj, DeleteEventArgs args)
	{
		Application.Quit ();
	}
} 
        
  

Requirements

Namespace: Rsvg
Assembly: rsvg-sharp (in rsvg-sharp.dll)
Assembly Versions: 2.16.0.0