Nanook.QueenBee.EditPakItem.btnInfo_Click C# (CSharp) Method

btnInfo_Click() private method

private btnInfo_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void btnInfo_Click(object sender, EventArgs e)
        {
            MessageBox.Show(this,
            @"PAK headers contain certain information that must be specified.

            Example: Using the Songlist QB file on the Wii the values would be:
            Path='scripts\guitar\songlist.qb.ngc'
            Type=Qb     Quick pick list.
            Other=.qb   Used when type is Other.

            Check Include Filename in Header to include the filename in the PAK.

            Note: GH3 Wii misses the first character from the path, you can include it to ensure header FileIds are correct
              The FileId doesn't appear to affect the game, it may just need to be unique.", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information);
        }