示例#1
0
 public static void webkit_web_view_load_html(IntPtr web_view, string content, string base_uri)
 {
     if (EtoEnvironment.Platform.IsLinux)
     {
         NMLinux.webkit_web_view_load_html(web_view, content, base_uri);
     }
     else if (EtoEnvironment.Platform.IsMac)
     {
         NMMac.webkit_web_view_load_html(web_view, content, base_uri);
     }
     else
     {
         NMWindows.webkit_web_view_load_html(web_view, content, base_uri);
     }
 }