Customizing the About Screen and Other Branding

Customize the About screen.

  1. In Solution Explorer, click the Show All button.
  2. Include all the files in the CustomCode folder.
  3. Modify the code in your copy of the included files.
    Code related to this customization is:
    public override void ShowAboutForm()
      { 
        System.Text.StringBuilder _sb = new System.Text.StringBuilder();
        _sb.Append("Copyright 2012 Esabys, Inc."); 
        _sb.Append("\r\n"); 
        _sb.Append("Version: 1.0"); _
        sb.Append("\r\n"); _
        sb.Append("Build id:20120518-0123"); 
        MessageBox.Show(_sb.ToString(), Consts.APP_TITLE, MessageBoxButtons.OK,
        MessageBoxIcon.Asterisk, MessageBoxDefaultButton.Button1); 
    } 
  4. Rebuild and test your project.