摘要: 方法有二1.直接修改TEXT:View Code this.Text = "csg - " + FullFileName;2.通过调用DLL文件修改:方法二 #region 方法二 docManagerData.NewDocName = FullFileName; docManager = new DocManager(docManagerData); docManager.RegisterFileType("csg", "csgfile", "DrawTools File");//文件关联 // Subs... 阅读全文
posted @ 2012-05-23 15:23 吸血程序猿 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 做winform开发的时候,常常为了美化界面,把窗体的FormBorderStyle属性设置为None,即所谓的无标题窗体,这个时候,在任务栏鼠标右击是没有菜单的,那么如何吧默认的系统菜单还原回来呢?第一步,引用命名空间usingSystem.Windows.Forms;usingSystem.Runtime.InteropServices;第二步,把以下代码添加到Form的类中#region 右击菜单 [DllImport("user32.dll", EntryPoint = "GetWindowLong", CharSet = CharSet.Aut 阅读全文
posted @ 2012-05-23 15:03 吸血程序猿 阅读(417) 评论(0) 推荐(0) 编辑