CSPspEmu.Gui.Winforms.AboutForm.AboutForm C# (CSharp) Method

AboutForm() public method

public AboutForm ( Form ParentForm, IGuiExternalInterface IGuiExternalInterface ) : System
ParentForm Form
IGuiExternalInterface IGuiExternalInterface
return System
        public AboutForm(Form ParentForm, IGuiExternalInterface IGuiExternalInterface)
        {
            this.Icon = ParentForm.Icon;
            InitializeComponent();
            GpuPluginInfoLabel.Text = "GPU " + IGuiExternalInterface.GetGpuPluginInfo().ToString();
            AudioPluginInfoLabel.Text = "Audio " + IGuiExternalInterface.GetAudioPluginInfo().ToString();
            versionLabel.Text = "Version: " + PspGlobalConfiguration.CurrentVersion + " : r" + PspGlobalConfiguration.CurrentVersionNumeric;
            GitRevisionValueLinkLabel.Text = PspGlobalConfiguration.GitRevision;
        }