怎么实现在Winform窗体中通过CefSharp访问一个网址,并 使当前用户携带session信息访问
2个回答
展开全部
动态添加控件,自己要操作的就是new一个控件出来,然后this.controls.add(控件)方法添加进去,利用Location属性确定其起始位置,用size属性确定其大小,附代码双击鼠标添加testbox
private void from1_DoubleClick(object sender, EventArgs e)
{
TextBox mytestbox = new TextBox();
mytestbox.Location = PointToClient(MousePosition);
mytestbox.Size = new Size(100,50); //自己调整
this.Controls.Add(mytestbox); //添加,添到哪里自己调整
}
private void from1_DoubleClick(object sender, EventArgs e)
{
TextBox mytestbox = new TextBox();
mytestbox.Location = PointToClient(MousePosition);
mytestbox.Size = new Size(100,50); //自己调整
this.Controls.Add(mytestbox); //添加,添到哪里自己调整
}
追问
这和我问的有关系吗?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询