当前位置: 首页>>代码示例>>C#>>正文


C# WebView.LoadURL方法代码示例

本文整理汇总了C#中WebView.LoadURL方法的典型用法代码示例。如果您正苦于以下问题:C# WebView.LoadURL方法的具体用法?C# WebView.LoadURL怎么用?C# WebView.LoadURL使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WebView的用法示例。


在下文中一共展示了WebView.LoadURL方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: TitleScreen

        public TitleScreen(DangerZone pParent)
            : base(pParent)
        {
            #if WINDOWS
            WebCoreConfig pConfig = new WebCoreConfig();
            pConfig.EnableJavascript = true;
            //WebCore.Initialize(pConfig, true);

            this.Parent.IsMouseVisible = true;

            m_pWebView = WebCore.CreateWebView(800, 600);
            {
                m_pWebView.LoadURL("http://www.google.com"); //Content\\Editor\\index.html
                while (m_pWebView.IsLoadingPage)
                    WebCore.Update();

                m_pWebView.Render().SaveToPNG("result.png", true);

                /*
                 * Här kan vi då kanske ladda in filen?
                 */

            }
            //WebCore.Shutdown();
            #endif
        }
开发者ID:zoral,项目名称:dangerzone,代码行数:26,代码来源:TitleScreen.cs

示例2: Browser

		public Browser(Guid id, string url, int width, int height)
		{
			Id = id;
			_width = width;
			_height = height;
			webView = WebCore.CreateWebView(width, height);
			webView.ResizeComplete += webView_ResizeComplete;
			webView.IsDirtyChanged += webView_IsDirtyChanged;
			//webView.SelectLocalFiles += webView_SelectLocalFiles;
			webView.CursorChanged += webView_CursorChanged;
			webView.LoadCompleted += new EventHandler(webView_LoadCompleted);
			webView.LoadURL(url);
			webView.Focus();
		}
开发者ID:Azerothian,项目名称:Illisian.Niva,代码行数:14,代码来源:Browser.cs

示例3: Start

    public void Start()
    {
        Debug.Log( "Initializing WebCore." );

        // WebCoreInitializer.Awake() initializes the WebCore
        // before any Start() function on any script is called.
        // We create a web-view here.
        webView = WebCore.CreateWebView( width, height );

        // Load the defined URL.
        webView.LoadURL( initialURL );

        // Prepare and a assign a texture to the component.
        // The texture will display the pixel buffer of the WebView.
        texture = new Texture2D( width, height, TextureFormat.RGBA32, false );
        Pixels = texture.GetPixels32( 0 );
        PixelsHandle = GCHandle.Alloc( Pixels, GCHandleType.Pinned );

        if ( renderer )
            renderer.material.mainTexture = texture;
        else if ( GetComponent( typeof( GUITexture ) ) )
        {
            GUITexture gui = GetComponent( typeof( GUITexture ) ) as GUITexture;
            gui.texture = texture;
        }
        else
            Debug.LogError( "Game Object has no Material or GUI Texture, we cannot render a web-page to this object!" );

        mainScript = GameObject.Find("Main").GetComponent<MainMenu>();
        // Handle some important events.
        webView.OpenExternalLink += OnWebViewOpenExternalLink;
        webView.ShowJavascriptDialog += OnJavascriptDialog;
        webView.LoginRequest += OnLoginRequest;
    }
开发者ID:ACReeser,项目名称:rKnightsOfNew,代码行数:34,代码来源:WebViewTextureSample.cs


注:本文中的WebView.LoadURL方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。