33 lines
648 B
C#
33 lines
648 B
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Windows.Forms;
|
|
// using Bunifu.UI.WinForms;
|
|
|
|
namespace XeroBrowser
|
|
{
|
|
public partial class FrmSettings : Form
|
|
{
|
|
public FrmSettings()
|
|
{
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void bunifuDropdown1_SelectedIndexChanged(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void bunifuButton22_Click(object sender, EventArgs e)
|
|
{
|
|
Process.Start("ms-settings:network-proxy");
|
|
}
|
|
|
|
private void bunifuImageButton1_Click(object sender, EventArgs e)
|
|
{
|
|
Close();
|
|
}
|
|
}
|
|
}
|