thielj / MetroFramework

Metro UI of Windows 8 for .NET Windows Forms applications
http://thielj.github.io/MetroFramework
Other
396 stars 225 forks source link

MetroTextBox Focus #14

Open cornelha opened 10 years ago

cornelha commented 10 years ago

Calling Focus() on the control does not focus the internal textbox. The only way currently to focus the textbox is to click on it. I have managed to get by this issue by adding the following into the textbox class: public new bool Focus() { return baseTextBox.Focus(); }

ricoris commented 7 years ago

Please solve