using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Chat.Framework.WXSdk.UIForm
{
public partial class BrowserForm : Form
{
string url = string.Empty;
///
///
///
///
public BrowserForm(string url)
{
InitializeComponent();
this.url = url;
}
private void BrowserForm_Load(object sender, EventArgs e)
{
webBrowser1.Navigate(url);
}
}
}