using system;
using system.drawing; 【相关文章:C#,结构成员是引用,会发生什么】 【扩展阅读:Boost.bind的文档(翻译)】using system.drawing.text; 【扩展信息:BPM——信息化的中枢神经】 using system.drawing.drawing2d; using system.collections; using system.componentmodel; using system.windows.forms; using system.data;namespace windowsapplication1
{ /// <summary> /// form1.的摘要说明。 /// </summary> public class form1 : system.windows.forms.form { /// <summary> /// 必需的设计器变量。 /// </summary>private system.componentmodel.container components = null;
private string texttodraw = "";public form1()
{ // // windows 窗体设计器支持所必需的 //initializecomponent();
// 在 initializecomponent 调用后添加任何构造函数代码
this.setstyle(controlstyles.resizeredraw,true);
}
/// <summary> /// 清理所有正在使用的资源。 /// </summary>protected override void dispose( bool disposing )
{ if( disposing ) { if (components != null) { components.dispose(); } } base.dispose( disposing ); } ... 下一页