Load() public method

Loads the specified URL.
public Load ( string url ) : void
url string The URL to be loaded.
return void
Esempio n. 1
0
        private void _timerReOrder_Tick(object sender, EventArgs e)
        {
            if ((DateTime.Now - _lastOrderTime).TotalMinutes > 8)
            {
                DateTime d = (DateTime)CTRL_OrderDate.SelectedDate;
                _Browser.Load(String.Format(_orderUrl, d.ToUnixTime()));

                _timerReOrder.Stop();
            }
        }
Esempio n. 2
0
 private void _WebBrowser_Loaded(object sender, RoutedEventArgs e)
 {
     _WebBrowser.Load(@"C:\Users\Jch\Desktop\t.html");
 }