public override void Create(WebView _webview, Rect _frame)
        {
            base.Create(_webview, _frame);

            // Create native instance and set frame
            WebViewFrame _webviewFrame = new WebViewFrame(_frame);

            webviewCreate(_webview.UniqueID, _webviewFrame);
        }
 private static extern void webviewSetFrame(WebViewFrame frame, string _tag);
 private static extern void webviewCreate(string _tag, WebViewFrame _frame);
		private static extern void webviewSetFrame (WebViewFrame frame, string _tag);
		private static extern void webviewCreate (string _tag, WebViewFrame _frame);
		public override void Create (WebView _webview, Rect _frame)
		{
			base.Create(_webview, _frame);

			// Create native instance and set frame
			WebViewFrame 	_webviewFrame	= new WebViewFrame(_frame);

			webviewCreate(_webview.UniqueID, 	_webviewFrame);
			webviewSetFrame(_webviewFrame, 		_webview.UniqueID);
		}