| 123456789101112131415161718192021222324252627282930313233343536 | 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 WCS_Client.From.From_Montior{    public partial class Srm3 : UserControl    {        public Srm3()        {            InitializeComponent();        }        private void button1_MouseMove(object sender, MouseEventArgs e)        {            button1.BackColor = Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(144)))), ((int)(((byte)(154)))));        }        private void button1_MouseLeave(object sender, EventArgs e)        {            button1.BackColor = Color.Transparent;        }        private void button1_Click(object sender, EventArgs e)        {            string strname = Name.Substring(0, 5);            Form_EquInfo equinfo = new Form_EquInfo(strname);            equinfo.Show();        }    }}
 |