using SDRSharp.Radio; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace EnderIce2.SDRSharpPlugin { public partial class WelcomeForm : Form { public WelcomeForm() { InitializeComponent(); } private void button2_Click(object sender, EventArgs e) { System.Diagnostics.Process.Start("https://ko-fi.com/enderice2"); } private void button1_Click(object sender, EventArgs e) { Close(); } private void checkBox1_CheckedChanged(object sender, EventArgs e) { Utils.SaveSetting("ShowWelcomePage", !checkBox1.Checked); } } }