Pinta.Core.HelpActions.About_Activated C# (CSharp) Méthode

About_Activated() private méthode

private About_Activated ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Résultat void
        private void About_Activated(object sender, EventArgs e)
        {
            Gtk.AboutDialog dialog = new Gtk.AboutDialog ();

            dialog.Icon = PintaCore.Resources.GetIcon ("Pinta.png");
            dialog.Version = "0.2";
            dialog.ProgramName = "Pinta";
            dialog.Website = "http://www.pinta-project.com";
            dialog.WebsiteLabel = "Visit Homepage";
            dialog.Copyright = "Copyright \xa9 2010 Jonathan Pobst";
            dialog.Authors = new string[] { "Jonathan Pobst" };
            dialog.Documenters = null;
            dialog.TranslatorCredits = null;
            dialog.Run ();
            dialog.Destroy ();
        }