61 lines
1.4 KiB
C#
61 lines
1.4 KiB
C#
using CefSharp.WinForms;
|
|
using CefSharp;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Diagnostics;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using Bunifu.UI.WinForms;
|
|
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
|
|
|
|
namespace WebBrowser
|
|
{
|
|
public partial class frmSettings : Form
|
|
{
|
|
public frmSettings()
|
|
{
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
private void bunifuToggleSwitchflash_CheckedChanged(object sender, Bunifu.UI.WinForms.BunifuToggleSwitch.CheckedChangedEventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void bunifuToggleSwitchcookies_CheckedChanged(object sender, Bunifu.UI.WinForms.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)
|
|
{
|
|
this.Close();
|
|
}
|
|
}
|
|
}
|