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
2023-02-20 03:39:55 -07:00

51 lines
1.1 KiB
C#

using System;
using System.Diagnostics;
using System.Windows.Forms;
using Bunifu.UI.WinForms;
namespace WebBrowser
{
public partial class frmSettings : Form
{
public frmSettings()
{
InitializeComponent();
}
private void bunifuToggleSwitchflash_CheckedChanged(object sender, BunifuToggleSwitch.CheckedChangedEventArgs e)
{
}
private void bunifuToggleSwitchcookies_CheckedChanged(object sender, BunifuToggleSwitch.CheckedChangedEventArgs e)
{
}
private void bunifuDropdown1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void bunifuButton22_Click(object sender, EventArgs e)
{
Process.Start("ms-settings:network-proxy");
}
private void frmSettings_FormClosing(object sender, FormClosingEventArgs e, Form form)
{
}
private void bunifuPictureBox1_Click(object sender, EventArgs e)
{
}
private void bunifuImageButton1_Click(object sender, EventArgs e)
{
Close();
}
}
}