mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-05-28 22:44:27 +00:00
17 lines
561 B
C#
17 lines
561 B
C#
using SDRSharp.Radio;
|
|
using System;
|
|
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);
|
|
}
|
|
} |