public Browser() { InitializeComponent(); initBrowser(); timer = new Timer(); timer.Tick += new System.EventHandler(timerEvent); timer.Interval = 100; timer.Enabled = true; mouseBox = new MouseRectangle(this); isFullScreen = false; SetKeyboard(new QwertyKeyboard(true)); winBrowse.Navigate(homepage); winBrowse.ScriptErrorsSuppressed = true; keyboard.ClearText_Click += Keyboard_ClearText_Click; }