Ejemplo n.º 1
0
 private void txtInformatieUtila_Enter(object sender, EventArgs e)
 {
     if (this.lPoateFiControlTinta)
     {
         ControaleCreateDinamic.SetControlTinta(this.txtInformatieUtila);
     }
 }
Ejemplo n.º 2
0
        public MaskedTextBoxGuma()
        {
            DoubleBuffered = true;

            InitializeComponent();

            this.txtInformatieUtila.ContextMenuStrip = ControaleCreateDinamic.GetMeniuContextualZonaText();
        }
        public ComboBoxAutocompleteGuma()
        {
            DoubleBuffered = true;

            InitializeComponent();

            //Adaugam meniul contextual
            this.cboListaCompleta.ContextMenuStrip = ControaleCreateDinamic.GetMeniuContextualZonaText();
            this.cboListaCompleta.Leave           += cboListaCompleta_Leave;
        }
Ejemplo n.º 4
0
        public LabelGumaFind()
        {
            DoubleBuffered = true;

            InitializeComponent();

            //Adaugam meniul contextual
            this.lblText.ContextMenuStrip = ControaleCreateDinamic.GetMeniuContextualZonaText();
            this.TextAlign = ContentAlignment.MiddleLeft;
        }
Ejemplo n.º 5
0
        public TextBoxGuma()
        {
            DoubleBuffered = true;

            InitializeComponent();

            this.txtInformatieUtila.TabIndex = 0;
            this.btnGuma.TabIndex            = 1;

            //Adaugam meniul contextual
            this.txtInformatieUtila.ContextMenuStrip = ControaleCreateDinamic.GetMeniuContextualZonaText();
            this.CapitalizeazaPrimaLitera            = true;
            this.CapitalizeazaCuvintele = false;

            this.txtInformatieUtila.KeyDown     += txtInformatieUtila_KeyDown;
            this.txtInformatieUtila.TextChanged += txtInformatieUtila_TextChanged;

            this.txtInformatieUtila.IncepeActiune      += txtInformatieUtila_IncepeActiune;
            this.txtInformatieUtila.FinalizeazaActiune += txtInformatieUtila_FinalizeazaActiune;

            this.txtInformatieUtila.MouseClick += TxtInformatieUtila_MouseClick;
            this.txtInformatieUtila.GotFocus   += TxtInformatieUtila_GotFocus;
            this.txtInformatieUtila.LostFocus  += TxtInformatieUtila_LostFocus;
        }
 private void cboListaCompleta_Enter(object sender, EventArgs e)
 {
     ControaleCreateDinamic.SetControlTinta(this.cboListaCompleta);
 }
Ejemplo n.º 7
0
 private void lblText_Enter(object sender, EventArgs e)
 {
     ControaleCreateDinamic.SetControlTinta(this.lblText);
 }