1234567891011121314151617181920212223242526272829303132 |
- 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 UAS_MES_NEW.CustomControl.ComBoxWithFocus
- {
- public partial class ComBoxWithFocus : ComboBox
- {
- public ComBoxWithFocus()
- {
- InitializeComponent();
- this.Enter += this.ComBoxWithFocus_Enter;
- this.Leave += this.ComBoxWithFocus_Leave;
- }
- private void ComBoxWithFocus_Enter(object sender, EventArgs e)
- {
- this.BackColor = Color.GreenYellow;
- }
- private void ComBoxWithFocus_Leave(object sender, EventArgs e)
- {
- this.BackColor = Color.White;
- }
- }
- }
|