예제 #1
0
 public void ScrollTo(Point point)
 {
     NativeHtmlWindow.ScrollTo(point.X, point.Y);
 }
예제 #2
0
 public void ResizeTo(Size size)
 {
     NativeHtmlWindow.ResizeTo(size.Width, size.Height);
 }
예제 #3
0
 public void ScrollTo(int x, int y)
 {
     NativeHtmlWindow.ScrollTo(x, y);
 }
예제 #4
0
 public void RemoveFocus()
 {
     NativeHtmlWindow.Blur();
 }
예제 #5
0
 public void ResizeTo(int width, int height)
 {
     NativeHtmlWindow.ResizeTo(width, height);
 }
예제 #6
0
        public HtmlWindow OpenNew(string urlString, string windowOptions)
        {
            IHTMLWindow2 iHTMLWindow2 = NativeHtmlWindow.Open(urlString, "_blank", windowOptions, true);

            return((iHTMLWindow2 != null) ? new HtmlWindow(ShimManager, iHTMLWindow2) : null);
        }
예제 #7
0
 public string Prompt(string message, string defaultInputValue)
 {
     return(NativeHtmlWindow.Prompt(message, defaultInputValue).ToString());
 }
예제 #8
0
 public void Navigate(string urlString)
 {
     NativeHtmlWindow.Navigate(urlString);
 }
예제 #9
0
        public HtmlWindow Open(string urlString, string target, string windowOptions, bool replaceEntry)
        {
            IHTMLWindow2 iHTMLWindow2 = NativeHtmlWindow.Open(urlString, target, windowOptions, replaceEntry);

            return((iHTMLWindow2 != null) ? new HtmlWindow(ShimManager, iHTMLWindow2) : null);
        }
예제 #10
0
 public void MoveTo(Point point)
 {
     NativeHtmlWindow.MoveTo(point.X, point.Y);
 }
예제 #11
0
 public void Navigate(Uri url)
 {
     NativeHtmlWindow.Navigate(url.ToString());
 }
예제 #12
0
 public void MoveTo(int x, int y)
 {
     NativeHtmlWindow.MoveTo(x, y);
 }
예제 #13
0
 public void Focus()
 {
     NativeHtmlWindow.Focus();
 }
예제 #14
0
 public bool Confirm(string message)
 {
     return(NativeHtmlWindow.Confirm(message));
 }
예제 #15
0
 public void Close()
 {
     NativeHtmlWindow.Close();
 }
예제 #16
0
 public void Alert(string message)
 {
     NativeHtmlWindow.Alert(message);
 }