You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/ui-win32/UIMain.cs

24 lines
559 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace lokivpn
{
public partial class UI_Main_Frame : Form
{
public UI_Main_Frame()
{
InitializeComponent();
}
private void btnConfigProfile_Click(object sender, EventArgs e)
{
MessageBox.Show("not implemented yet", "error", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
}
}
}