Files
cms_thermo_active/Client_New/Form1.cs
T
2020-10-23 16:23:59 +02:00

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();
}
}
}