コード例 #1
0
ファイル: Browser.cs プロジェクト: allisonChilton/teamEyePad
        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;
        }
コード例 #2
0
ファイル: Browser.cs プロジェクト: allisonChilton/teamEyePad
        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;
        }