ARKcc.Form1.Form1_Load C# (CSharp) Method

Form1_Load() private method

private Form1_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void Form1_Load(object sender, EventArgs e)
        {
            ToolTip toolTip1 = new ToolTip();
            toolTip1.SetToolTip(buttonCheckUpdate, "This only checks if a new version of the file entities.txt is available, it's not a check for a new version of the application.");
            toolTip1.SetToolTip(buttonCrap, "Primitive");
            toolTip1.SetToolTip(buttonAs, "Ascendent");
            toolTip1.SetToolTip(checkBoxForceTame, "adds the ForceTame-command after the spawn-command, so it's immediately tamed.");
            loadFile();
        }