This repository has been archived on 2025-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
xerobrowser/WebBrowser/frmSettings.cs

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();
}
}
}