BiomePainter.Form1.Form1_Shown C# (CSharp) Method

Form1_Shown() private method

private Form1_Shown ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void Form1_Shown(object sender, EventArgs e)
        {
            imgRegion.Focus(); //otherwise the undo button was starting highlighted
            if (args != null && args.Length > 0 && !String.IsNullOrWhiteSpace(args[0]))
            {
                OpenWorld(args[0]);
            }
        }
Form1