mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-22 17:52:15 +00:00
18 lines
No EOL
345 B
C#
18 lines
No EOL
345 B
C#
using System.Windows.Forms;
|
|
using ShiftOS.Engine.WindowManager;
|
|
|
|
namespace ShiftOS.Main.ShiftOS.Apps
|
|
{
|
|
public partial class ShiftDemo : UserControl, IShiftWindowExtensions
|
|
{
|
|
public ShiftDemo()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void OnLoaded(ShiftWindow window)
|
|
{
|
|
icon.Image = this.GetShiftWindow().Icon.ToBitmap();
|
|
}
|
|
}
|
|
} |