mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 06:15:37 +03:00
32 lines
869 B
C#
32 lines
869 B
C#
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();
|
|
}
|
|
}
|
|
}
|