You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
4.1 KiB
C#
150 lines
4.1 KiB
C#
using Mesnac.Controls.Base;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Mesnac.Controls.Default.GCTS
|
|
{
|
|
[ToolboxBitmap(typeof(XC_GCTS), "Resources.XC_TS.xc1.png")]
|
|
public partial class XC_GCTS : PictureBox
|
|
{
|
|
protected Assembly _assembly = Assembly.GetExecutingAssembly();
|
|
protected Stream _imageStream;
|
|
private List<DesignAction> _clickActionList = new List<DesignAction>();
|
|
bool bNewPic = false;
|
|
string _statusName;
|
|
private Statuses _status;
|
|
private string[] sImages;
|
|
public enum Statuses
|
|
{
|
|
state1 = 1, state2 = 2, state3 = 3
|
|
}
|
|
public XC_GCTS()
|
|
{
|
|
InitializeComponent();
|
|
Init();
|
|
ReloadStream();
|
|
this.Reload();
|
|
}
|
|
public string StatusName
|
|
{
|
|
get
|
|
{
|
|
return _statusName;
|
|
}
|
|
set
|
|
{
|
|
_statusName = value;
|
|
}
|
|
}
|
|
protected void Init()
|
|
{
|
|
_imageStream = null;
|
|
sImages = new string[3];
|
|
sImages[0] = "Mesnac.Controls.Default.Resources.XC_TS.xc3.png";//zsTurnOn
|
|
sImages[1] = "Mesnac.Controls.Default.Resources.XC_TS.xc2.png";//zsTurnOn
|
|
sImages[2] = "Mesnac.Controls.Default.Resources.XC_TS.xc1.png";//zsTurnOn
|
|
_status = Statuses.state1;
|
|
}
|
|
public Statuses Status
|
|
{
|
|
get
|
|
{
|
|
return _status;
|
|
}
|
|
set
|
|
{
|
|
bool flag = false;
|
|
if (_status != value)
|
|
{
|
|
flag = true;
|
|
if (this.DesignMode == true)
|
|
{
|
|
bNewPic = true;
|
|
}
|
|
}
|
|
|
|
if ((int)value < 1)
|
|
{
|
|
_status = (Statuses)1;
|
|
}
|
|
else if ((int)value > 3)
|
|
{
|
|
_status = (Statuses)3;
|
|
}
|
|
else
|
|
{
|
|
_status = value;
|
|
}
|
|
if (flag)
|
|
{
|
|
ReloadStream();
|
|
Reload();
|
|
this.Refresh();
|
|
}
|
|
}
|
|
}
|
|
private void ReloadStream()
|
|
{
|
|
int nIndex = (int)_status;
|
|
_imageStream = _assembly.GetManifestResourceStream(sImages[nIndex - 1]);
|
|
//this.Image = Image.FromStream(_imageStream);
|
|
this.BackgroundImageLayout = ImageLayout.Stretch;
|
|
}
|
|
protected override void OnPaint(PaintEventArgs e)
|
|
{
|
|
if (_imageStream != null)
|
|
{
|
|
Graphics g = e.Graphics;
|
|
Image img = Image.FromStream(_imageStream);
|
|
if (bNewPic == true)
|
|
{
|
|
this.Size = img.Size;
|
|
bNewPic = false;
|
|
}
|
|
|
|
g.DrawImage(img, 0, 0, this.Width, this.Height);
|
|
}
|
|
}
|
|
private void Reload()
|
|
{
|
|
if (_imageStream != null)
|
|
{
|
|
Image img = Image.FromStream(_imageStream);
|
|
Size size = new Size();
|
|
size.Width = 582;
|
|
size.Height = 73;
|
|
this.Size = size;
|
|
if (bNewPic == true)
|
|
{
|
|
this.Size = size;
|
|
bNewPic = false;
|
|
}
|
|
this.BackgroundImage = img;
|
|
this.Refresh();
|
|
}
|
|
}
|
|
#region 事件属性Click
|
|
public List<DesignAction> ClickActionList
|
|
{
|
|
get
|
|
{
|
|
return this._clickActionList;
|
|
}
|
|
set
|
|
{
|
|
this._clickActionList = value;
|
|
}
|
|
}
|
|
#endregion
|
|
}
|
|
}
|