43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
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;
|
|
|
|
namespace Vichingo455_Settings
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
public Form1()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
var dialog = new About();
|
|
dialog.ShowDialog();
|
|
}
|
|
|
|
private void runToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.Windows) + @"\explorer.exe", "shell:::{2559a1f3-21d7-11d4-bdaf-00c04f60b9f0}");
|
|
}
|
|
|
|
private void fileExplorerToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.Windows) + @"\explorer.exe");
|
|
}
|
|
|
|
private void registryEditorToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.Windows) + @"\regedit.exe");
|
|
}
|
|
}
|
|
}
|