2017-11-05 18:47:46 -05:00
|
|
|
|
using System.Windows.Forms;
|
2017-09-27 18:32:16 -04:00
|
|
|
|
using ShiftOS.Engine.WindowManager;
|
2017-09-24 12:32:50 -06:00
|
|
|
|
|
2017-11-05 18:47:46 -05:00
|
|
|
|
namespace ShiftOS.Main.ShiftOS.Apps
|
2017-09-24 12:32:50 -06:00
|
|
|
|
{
|
2017-11-05 18:47:46 -05:00
|
|
|
|
public partial class ShiftDemo : UserControl, IShiftWindowExtensions
|
|
|
|
|
{
|
|
|
|
|
public ShiftDemo()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
2017-09-27 18:32:16 -04:00
|
|
|
|
|
2017-11-05 18:47:46 -05:00
|
|
|
|
public void OnLoaded(ShiftWindow window)
|
|
|
|
|
{
|
|
|
|
|
icon.Image = this.GetShiftWindow().Icon.ToBitmap();
|
|
|
|
|
}
|
2017-09-27 18:32:16 -04:00
|
|
|
|
}
|
2017-11-05 18:47:46 -05:00
|
|
|
|
}
|