Unplanned
Last Updated: 11 Aug 2021 06:04 by ADMIN
n/a
Created on: 11 Aug 2021 06:02
Category: TextBox
Type: Bug Report
1
RadTextBox: when ShowEmbeddedLabel property is enabled the controls does not receive focus in the Shown event
RadTextBox doesn't get focused if the embedded label is shown. However, if the embedded label is not shown, RadTextBox is focused as expected. 
        public RadForm1()
        {
            InitializeComponent();
            this.radTextBox1.ShowEmbeddedLabel = true;
            this.radTextBox1.EmbeddedLabelText = "Enter name:";
        } 

        private void RadForm1_Shown(object sender, EventArgs e)
        {
             this.radTextBox1.Focus();
        }
0 comments