BizHawk/BizHawk.MultiClient/BizBox.cs

70 lines
1.6 KiB
C#
Raw Normal View History

2011-07-31 02:13:24 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace BizHawk.MultiClient
{
public partial class BizBox : Form
{
public BizBox()
{
InitializeComponent();
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
this.linkLabel1.LinkVisited = true;
System.Diagnostics.Process.Start("http://code.google.com/p/bizhawk/");
}
private void OK_Click(object sender, EventArgs e)
{
this.Close();
}
private void BizBox_Load(object sender, EventArgs e)
{
Text = " BizHawk (SVN r" + SubWCRev.SVN_REV + ")";
VersionLabel.Text = MainForm.EMUVERSION + " Released " + MainForm.RELEASEDATE;
}
private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
2012-12-16 18:31:49 +00:00
this.linkLabel3.LinkVisited = true;
System.Diagnostics.Process.Start("http://byuu.org/bsnes/");
}
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
2012-12-16 18:31:49 +00:00
this.linkLabel2.LinkVisited = true;
System.Diagnostics.Process.Start("http://gambatte.sourceforge.net/");
}
2012-12-16 18:31:49 +00:00
private void label30_Click(object sender, EventArgs e)
{
}
private void label28_Click(object sender, EventArgs e)
{
}
private void label29_Click(object sender, EventArgs e)
{
}
private void linkLabel4_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
this.linkLabel4.LinkVisited = true;
System.Diagnostics.Process.Start("http://emu7800.sourceforge.net/");
}
2011-07-31 02:13:24 +00:00
}
}