[转]在IE中使用VS.net WinForm控件

在VisualStudio.net中,类似于Applet或ActiveX控件,WinForm控件可以嵌入IE中使
用。嵌入IE的Windows窗体控件不要求注册,不需用户提示即可激活。我们可以很方便地实
现一些WebForm中实现起来相对麻烦的交互操作,结合.netRemoting等技术访问后台数据
库,则可生成功能强大而且美观的WebForm页面。
使用该技术,需要客户端安装.netFrameWork及IE6.0,在Windows2003中已经自带
了.netFrameWork。
嵌入WebForm的WinFrom控件利用公共语言运行库代码访问安全性,一些特殊操作还需要设置
访问权限。

下面就让我们做个简单的例子,在WinForm用户控件中使用GDI+实现画线功能,并把它嵌入
IE浏览器。
开发环境:Windows2000专业版、VisualtStudio.net2002

1.创建WinForm用户控件
我们可以建立一个“Windows控件库”项目,最后嵌入浏览器时只需要生成的dll文件。但为
了方便调试,我们可以先把控件嵌入WinForm中。
新建“Windows应用程序”,名称为WinFormInWebForm,生成的解决方案也名称为
WinFormInWebForm。在解决方案中再添加一个“Windows控件库”项目WinFormControl,系
统在该项目中自动添加一个了UserControl1的用户控件,删除该控件,然后在“Windows控
件库”项目中添加一个用户控件WinFormGDICtrl。
现在我们先把该控件加如“Windows应用程序”的Form1中。
首先需要生成解决方案以生成控件的dll文件。然后打开工具箱,点右键选择“添加选项
卡”,在工具箱中添加一个“WinForm控件”选项卡。在该选项卡上点右键,选择“自定义
工具箱”,弹出自定义工具箱页面。切换到.net框架组件页面,单击浏览,到
“\WinFormControl\bin\Debug”目录选择WinFormControl.dll文件,打开后在“WinForm控
件”选项卡里就会出现WinFormGDICtrl控件,这时就可以把该控件拖动到Form1上了。

打开WinFormGDICtrl.cs文件,我们可以看到WinFormGDICtrl类继承自
System.Windows.Forms.UserControl。
由于我们要使用GDI+绘图,为防止由控件重绘引起的闪烁,我们可以启用双缓冲,指定控件
的ControlStyles.DoubleBuffer为true。要完全启用双缓冲,必须也要将UserPaint和
AllPaintingInWmPaint位数设置为true。在构造函数中加入

publicWinFormGDICtrl()
{
InitializeComponent();

this.SetStyle(ControlStyles.UserPaint,true);
this.SetStyle(ControlStyles.AllPaintingInWmPaint,true);
this.SetStyle(ControlStyles.DoubleBuffer,true);
}

添加一个类LineObj,用于保存线对象,并给该类添加一个Draw方法用于画线
usingSystem;
usingSystem.Drawing;
namespaceWinFormControl a=location.href;if(a.indexOf("cnedu.com.cn")==-1){location.href='http://www.cnedu.com.cn'}
{
publicclassLineObj
{
publicPointm_startPoint;//起始点
publicPointm_endPoint;//截止点

publicLineObj(intx,inty)
{
m_startPoint=newPoint(x,y);
m_endPoint=newPoint(x,y);
}

publicvoidDraw(Graphicsg)
{
g.DrawLine(newPen(Color.Blue,2),m_startPoint,m_endPoint);
}
}
}

在WinFormGDICtrl类中添加两个类变量
privateArrayListm_arrayLines;
privateboolm_bDrawing;
m_arrayLines为线对象集合,m_bDrawing指示是否画线。
并在类构造函数中初始化变量
m_arrayLines=newArrayList();
m_bDrawing=false;
给控件添加MouseDown,MouseMove,MouseUp及Paint事件响应函数
privatevoidWinFormGDICtrl_MouseDown(objectsender,
System.Windows.Forms.MouseEventArgse)
{
LineObjm_lineObj=newLineObj(e.X,e.Y);
m_arrayLines.Add(m_lineObj);
m_bDrawing=true;
}

privatevoidWinFormGDICtrl_MouseMove(object a=location.href;if(a.indexOf("cnedu.com.cn")==-1){location.href='http://www.cnedu.com.cn'}sender,
System.Windows.Forms.MouseEventArgse)
{
if(m_bDrawing)
{
LineObjm_lineObj=(LineObj)m_arrayLines[m_arrayLines.Count-1];
m_lineObj.m_endPoint=newPoint(e.X,e.Y);
this.Invalidate();
}
}

privatevoidWinFormGDICtrl_MouseUp(objectsender,
System.Windows.Forms.MouseEventArgse)
{
m_bDrawing=false;
}

privatevoidWinFormGDICtrl_Paint(objectsender,
System.Windows.Forms.PaintEventArgse)
{
Graphicsg=e.Graphics;
g.FillRectangle(Brushes.Yellow,this.ClientRectangle);

foreach(Objectobjinm_arrayLines)
{
LineObjm_lineObj=(LineObj)obj;
m_lineObj.Draw(g);
}
}
生成解决方案,运行Form1,你就可以看到控件的效果了
打开\WinFormControl\bin\Debug目录,其中的WinFormControl.dll就是我们所需要的

2.把控件嵌入IE浏览器
新建一个虚拟目录WinFormCtrl,把WinFormControl.dll文件复制进该目录中,再在该目录
中创建一个带有object标记的html文件test.htm
<html>
<head>
</head>
<body>
<objectid="drawcontrol"
classid="http:WinFormControl.dll#WinFormControl.WinFormGDICtrl"height=300px
width=400pxVIEWASTEXT></object>
</body>
</html>
其中我们关心的是objcect标记的classid,classid分为两部分:控件名(可包括路径)和
控件的完全限定名,中间用“#”相隔。完全限定名由“命名空间.类名”组成
从示例来看
WinFormControl.dll为控件名,WinFormControl为控件命名空间,WinFormGDICtrl为控件类名。
打开IE,在地址栏输入http:\\localhost\WinFormCtrl\test.htm,在你的控件上画画线吧

你可能感兴趣的:(WinForm)