1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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;
- using WisdomClient.data;
- namespace IntelligentControlForsx.MyControls
- {
- public partial class SwitchRight : UserControl, IPointData
- {
- private string tagId;
- private TsData tagData;
- public SwitchRight()
- {
- InitializeComponent();
- }
- [Browsable(true), Category("Point")]
- public TsData TagData
- {
- get
- {
- return tagData;
- }
- set
- {
- tagData = value;
- if (tagData != null && tagData.booleanValue.HasValue)
- {
- this.pictureBox1.Image = tagData.booleanValue.Value
- ? global::IntelligentControlForsx.Properties.Resources.kaiguan_He_Right_fw
- : global::IntelligentControlForsx.Properties.Resources.kaiguan_Kai_Right_fw;
- //this.label1.Text = tagData.doubleValue.Value.ToString("0.00");
- }
- }
- }
- [Browsable(true), Category("Point")]
- public string TagId
- {
- get
- {
- return tagId;
- }
- set
- {
- tagId = value;
- }
- }
- private void pictureBox1_Click(object sender, EventArgs e)
- {
- }
- }
- }
|