2011-04-01 21:34:11 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
using System.Data;
|
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Windows.Forms;
|
2011-05-21 23:28:33 +00:00
|
|
|
|
using CUETools.CTDB.EACPlugin.Properties;
|
2011-04-01 21:34:11 +00:00
|
|
|
|
|
|
|
|
|
|
namespace AudioDataPlugIn
|
|
|
|
|
|
{
|
|
|
|
|
|
public partial class Options : Form
|
|
|
|
|
|
{
|
|
|
|
|
|
public Options()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
2011-04-06 04:15:19 +00:00
|
|
|
|
|
|
|
|
|
|
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
System.Diagnostics.Process.Start(linkLabel1.Text);
|
|
|
|
|
|
}
|
2011-05-21 23:28:33 +00:00
|
|
|
|
|
|
|
|
|
|
private void Options_Load(object sender, EventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.Icon = Resources.ctdb;
|
|
|
|
|
|
}
|
2011-04-01 21:34:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|