51 lines
1.1 KiB
C#
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();
|
|
}
|
|
}
|
|
}
|