Ryujinx-GtkSharp/sample/gtk-html-sample.cs
Paolo Molaro 5cd8d37664 Sample for GtkHTML.
svn path=/trunk/gtk-sharp/; revision=26585
2004-05-03 14:28:59 +00:00

25 lines
467 B
C#

using Gtk;
using GtkSharp;
using System;
// mcs -r gtkhtml-sharp -r gtk-sharp gtk-html-sample.cs
class HTMLSample {
static int Main (string [] args)
{
HTML html;
Window win;
Application.Init ();
html = new HTML ();
win = new Window ("Test");
win.Add (html);
HTMLStream s = html.Begin ("text/html");
s.Write ("<html><body>");
s.Write ("Hello world!");
html.End (s, HTMLStreamStatus.Ok);
win.ShowAll ();
Application.Run ();
return 0;
}
}