mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-22 19:22:18 -05:00
26 lines
545 B
C#
26 lines
545 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace ShiftOS.Engine.ShiftFS.FileGUI
|
|
{
|
|
public partial class FileOpener : UserControl
|
|
{
|
|
public FileOpener()
|
|
{
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
private void shiftButton1_Click(object sender, EventArgs e)
|
|
{
|
|
MessageBox.Show("yay");
|
|
}
|
|
}
|
|
}
|