Ejemplo n.º 1
0
    static void About_Box(object o, EventArgs args)
    {
        string [] authors = new string [] {
            "Duncan Mak ([email protected])",
        };

        string [] documenters = new string [] {};
        string    translaters = null;
        Pixbuf    pixbuf      = new Pixbuf("pixmaps/gnome-color-browser.png");

        Gnome.About about = new Gnome.About("Fifteen #", "0.1",
                                            "Copyright (C) 2002, Ximian Inc.",
                                            "A C# port of Fifteen, a gnomecanvas demo",
                                            authors, documenters, translaters,
                                            pixbuf);
        about.Show();
    }
Ejemplo n.º 2
0
    public void on_about1_activate(object o, EventArgs ea)
    {
        Console.WriteLine("About!");
        Dialog about_box =
            new Gnome.About("MPhoto",
                            "0.0",
                            "Copyright (C) 2002  Ximian, Inc.\nCopyright (C) 2002 Vladimir Vukicevic",
                            null,
                            new string[] { "Vladimir Vukicevic <*****@*****.**>",
                                           "Miguel de Icaza <*****@*****.**> (IconList widget)",
                                           "Ravi Pratap <*****@*****.**> (IconList selection)" },
                            new string[] { },
                            null,
                            new Gdk.Pixbuf(Gdk.Colorspace.Rgb, false, 8, 32, 32));

        Console.WriteLine("About!");
        about_box.Show();
        Console.WriteLine("About!");
        about_box.Run();
    }
Ejemplo n.º 3
0
	public void on_about1_activate (object o, EventArgs ea)
	{
		Console.WriteLine ("About!");
		Dialog about_box =
		new Gnome.About ("MPhoto",
				 "0.0",
				 "Copyright (C) 2002  Ximian, Inc.\nCopyright (C) 2002 Vladimir Vukicevic",
				 null,
				 new string[] { "Vladimir Vukicevic <*****@*****.**>",
						"Miguel de Icaza <*****@*****.**> (IconList widget)",
						"Ravi Pratap <*****@*****.**> (IconList selection)" },
				 new string[] { },
				 null,
				 new Gdk.Pixbuf (Gdk.Colorspace.Rgb, false, 8, 32, 32));
		Console.WriteLine ("About!");
		about_box.Show ();
		Console.WriteLine ("About!");
		about_box.Run ();
	}
Ejemplo n.º 4
0
        // Opens a new "About Window"
        private void OnAboutEvent(object o, EventArgs args)
        {
            Gdk.Pixbuf pixbuf = IconLibrary.PixbufLoader.GetIcon ("about.png");

            Gnome.About about_window = new Gnome.About(
                "MonoUML",
                VERSION,
                "Copyright (C) 2004-2005, MonoUML Team",
                GettextCatalog.GetString ("The CASE tool for Mono\n(SVN pre-alpha version)"),
                _authors,
                _documenters,
                _translators,
                pixbuf);
            about_window.Icon = IconLibrary.PixbufLoader.GetIcon ("main_icon.png");
            about_window.Show();
        }
Ejemplo n.º 5
0
	static void About_Box (object o, EventArgs args)
	{
		string [] authors = new string [] {
			"Duncan Mak ([email protected])",
		};

		string [] documenters = new string [] {};
		string translaters = null;
		Pixbuf pixbuf = new Pixbuf ("pixmaps/gnome-color-browser.png");

		Gnome.About about = new Gnome.About ("Fifteen #", "0.1",
						     "Copyright (C) 2002, Ximian Inc.",
						     "A C# port of Fifteen, a gnomecanvas demo",
						     authors, documenters, translaters,
						     pixbuf);
		about.Show ();
	}