mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
24 lines
559 B
C#
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);
|
|
}
|
|
}
|
|
}
|