SDR-RPC/WelcomeForm.cs
2020-10-25 16:19:43 +02:00

37 lines
850 B
C#

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);
}
}
}