mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-05-28 22:34:27 +00:00
37 lines
850 B
C#
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);
|
|
}
|
|
}
|
|
}
|