mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-02-02 13:57:34 +00:00
27 lines
545 B
C#
27 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");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|