-
yichuansuanfa
这是一个的遗传算法程序,开发平台是vc7.0(This is a genetic algorithm process, the development platform is vc7.0)
- 2007-08-08 19:53:03下载
- 积分:1
-
C# 编写多种窗口排列方式的MDIForm窗体
C# 实现MDIForm窗体功能,代码中实现了3个MDI子窗口,并以水平平铺、垂直平铺、层叠排列的方式实现多种子窗口的排列布局,其主要代码在form1.cs中,其它文件为生成子窗口的文件,关键代码如下:
private void toolStripMenuItem1_Click(object sender, EventArgs e)
{
Form2 frm2 = new Form2();//实例化Form2
frm2.MdiParent = this;//设置MdiParent属性,将当前窗体作为父窗体
frm2.Show();//使用Show方法打开窗体
Form3 frm3 = new Form3();//实例化Form3
frm3.MdiParent = this;//设置MdiParent属性,将当前窗体作为父窗体
frm3.Show();//使用Show方法打开窗体
Form4 frm4 = new Form4();//实例化Form4
frm4.MdiParent = this;//设置MdiParent属性,将当前窗体作为父窗体
frm4.Show();//使用Show方法打开窗体
}
private void 水平平铺ToolStripMenuItem_Click(object sender, EventArgs e)
{
LayoutMdi(MdiLayout.TileHorizontal);//使用MdiLayout枚举实现水平平铺
}
private void 垂直平铺ToolStripMenuItem_Click(object sender, EventArgs e)
{
LayoutMdi(MdiLayout.TileVertical);//使用MdiLayout枚举实现垂直平铺
}
private void 层叠排列ToolStripMenuItem_Click(object sender, EventArgs e)
{
LayoutMdi(MdiLayout.Cascade);//使用MdiLayout枚举实现层叠排列
}
- 2022-03-07 15:00:14下载
- 积分:1
-
23
说明: 用于实现方块编码的代码,实现图象的编码,C++代码(Coding for the realization of the code box, realize the image encoding, C++ Code)
- 2007-09-10 13:11:52下载
- 积分:1
-
stm32f10x
说明: This is a very important codes to me.This is a very very important codes to me.
- 2020-06-21 06:20:02下载
- 积分:1
-
FillPolygon
说明: 图形的自动填充算法 采用有效边表构建填充模型(Automatic filling of drawings)
- 2019-12-21 08:39:24下载
- 积分:1
-
STM32
STM32 外部中断程序,用于学习用中断来控制按键(STM32 External Interrupt program)
- 2013-07-12 16:37:30下载
- 积分:1
-
aspowx
说明: OWC是Office Web Compent的缩写,即Microsoft的Office Web组件,它为在Web中绘制图形提供了灵活的同时也是最基本的机制。在一个Intranet环境中,如果可以假设客户机上存在特定的浏览器和一些功能强大的软件(如IE6和Office 2000/XP/2003),那么就有能力利用Office Web组件提供一个交互式图形开发环境。这种模式下,客户端工作站将在整个任务中分担很大的比重。理论上说Excel能做的图都可以通过OWC画。(OWC is an acronym for Office Web Compent that Microsoft' s Office Web components, in the Web in its graphics rendering, while providing a flexible mechanism is the most basic. In an Intranet environment, if the client can assume the existence of a particular browser, and some powerful software (such as IE6 and Office 2000/XP/2003), then it would be able to take advantage of Office Web components to provide an interactive graphical development environment . This mode, client workstations will be shared throughout the task in a large part. Excel can do in theory plans are available through OWC painting.)
- 2009-08-23 17:16:17下载
- 积分:1
-
C++hao-zi-liao
大家共享好东西,
尤其是学C++的出血者(share good things, especially learning C bleeding)
- 2006-10-30 18:29:27下载
- 积分:1
-
Leach
tinyOS环境下的无线传感器网络leach协议(leach protocol for wireless sensor network)
- 2012-01-18 22:33:46下载
- 积分:1
-
Graphic
用MFC开发的小的二维制图程序,可实现简单的图形绘制,并对图形进行放缩,旋转,镜像等变换。(DRAW MFC )
- 2020-06-30 23:40:02下载
- 积分:1