private bool EnumChildForTridentDialogFrame(IntPtr hWnd, IntPtr lParam)
        {
            if (HtmlDialog.IsIETridentDlgFrame(hWnd))
            {
                HtmlDialog htmlDialog = new HtmlDialog(hWnd);
                htmlDialogs.Add(htmlDialog);
            }

            return(true);
        }
예제 #2
0
		private bool EnumChildForTridentDialogFrame(IntPtr hWnd, IntPtr lParam)
		{
			if (HtmlDialog.IsIETridentDlgFrame(hWnd))
			{
				HtmlDialog htmlDialog = new HtmlDialog(hWnd);
				htmlDialogs.Add(htmlDialog);
			}

			return true;
		}
        private static HtmlDialog GetHTMLDialogByIndex(ArrayList htmlDialogs, int index, bool waitForComplete)
        {
            HtmlDialog htmlDialog = (HtmlDialog)htmlDialogs[index];

            if (waitForComplete)
            {
                htmlDialog.WaitForComplete();
            }

            return(htmlDialog);
        }
예제 #4
0
 public cHtmlDialog(HtmlDialog ele)
     : base(ele)
 {
     obj = ele;
 }