Delete frmAbout.cs

This commit is contained in:
MaxXor 2015-01-29 09:57:42 +01:00
parent 175c3106a3
commit 30f73b2c6b
1 changed files with 0 additions and 28 deletions

View File

@ -1,28 +0,0 @@
using System;
using System.Windows.Forms;
namespace xServer.Forms
{
public partial class FrmAbout : Form
{
public FrmAbout()
{
InitializeComponent();
lblVersion.Text = Settings.XMLSettings.VERSION;
rtxtContent.Text = Properties.Resources.TermsOfUse;
lblCredits.Text =
"Credits: Banksy\n" +
" ResourceLib (Copyright (c) Daniel Doubrovkine, Vestris Inc., 2008-2013)\n" +
" protobuf (Copyright 2008 Google Inc.)\n\n" +
"Elevation Form Translators: Xenocode, Increment, DeadLine, Perfectionist,\n" +
" Qmz_, GameFire, navaro21";
}
private void btnOkay_Click(object sender, EventArgs e)
{
this.Close();
}
}
}