protected void OnBtnAcercaDeClicked(object sender, EventArgs e) { Estilo est = new Estilo(); AboutDialog AcercaDe = new AboutDialog(); AcercaDe.ProgramName = "WhiteRose"; AcercaDe.Version = "1.0"; AcercaDe.Copyright = "(c) EcoTech Team - 2017"; AcercaDe.Website = "http://www.imdb.com/title/tt4158110/?ref_=ttep_ep_tt"; AcercaDe.WebsiteLabel = "Mr. Robot"; AcercaDe.Authors = new string[] { "Albert Acevedo C.I. 26710983", "Gabriel Roa C.I. 25919459", "Marielba Maldonado C.I. 26710983", "Rubén Gutiérrez C.I. 25147289", "Sección 1 - Programación II" }; AcercaDe.ModifyBg(StateType.Normal, est.LigthSteelBlue); AcercaDe.Comments = "Sistema de Facturación para la empresa Mr. Robot \n Programado como proyecto final de la asignatura Programación II \n Lapso 2017-1 - Barquisimeto, diciembre del 2017"; AcercaDe.Run(); AcercaDe.Destroy(); }