using System; using Gtk; using Sexy; public class SexySpellEntryTest { public static void Main() { Application.Init(); Window window = new Window("Sexy Spell Entry Test"); window.BorderWidth = 12; window.Destroyed += delegate(object o, EventArgs args) { Application.Quit(); }; HBox box = new HBox(false, 6); Label label = new Label("Text:"); SpellEntry entry = new SpellEntry(); entry.Text = "Hello Wrold"; box.PackStart(label, false, false, 0); box.PackStart(entry, true, true, 0); window.Add(box); window.ShowAll(); Application.Run(); } }