amxmodx/installer/installtool/Main.cs

32 lines
869 B
C#
Raw Normal View History

2013-02-17 13:34:05 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace installtool
{
public partial class MainWindow : Form
{
public MainWindow()
{
InitializeComponent();
}
private void MainWindow_Load(object sender, EventArgs e)
{
this.Text = "AMX Mod X " + Program.VersionString + " Setup Wizard";
welcomeLabel_.Text = "Welcome to the AMX Mod X " + Program.VersionString + " Setup Wizard";
welcomeText_.Text = welcomeText_.Text.Replace("{Version}", Program.VersionString);
}
private void closeButton__Click(object sender, EventArgs e)
{
Application.Exit();
}
}
}