29 lines
640 B
C#
29 lines
640 B
C#
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;
|
|
using CefSharp.WinForms;
|
|
|
|
namespace Client_New
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
public Form1()
|
|
{
|
|
InitializeComponent();
|
|
var browser = new ChromiumWebBrowser("http:\\localhost:9000");
|
|
this.Controls.Add(browser);
|
|
}
|
|
|
|
private void cursort(object sender, EventArgs e)
|
|
{
|
|
//throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|