mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-23 02:02:15 +00:00
0a552e3954
It's pretty much done. Pair with DE, and serve hot.
20 lines
388 B
C#
20 lines
388 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.Main
|
|
{
|
|
public partial class ShiftDemo : UserControl
|
|
{
|
|
public ShiftDemo()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|