悟生慧

 
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页

2012年4月25日

.net获取Resources.resx资源文件中的数据

摘要: this.textBox1.Text = 命名空间.Properties.Resources.ResourceManager.GetString("String1"); 阅读全文

posted @ 2012-04-25 18:37 悟生慧 阅读(1763) 评论(0) 推荐(0) 编辑

2012年4月23日

微软的IE中调试JavaScript的工具下载链接

摘要: Microsoft Script Debugger 下载链接:http://www.microsoft.com/download/en/confirmation.aspx?id=22185Microsoft Script DebuggerIE Developer Toolbar 下载链接:http://www.microsoft.com/download/en/details.aspx?id=18359IE Developer Toolbar 阅读全文

posted @ 2012-04-23 10:35 悟生慧 阅读(237) 评论(0) 推荐(0) 编辑

2012年4月20日

ASP.NET调试启动默认浏览器如何设置

摘要: 选择任意一个页面右击——>浏览方式——>Internet Explorer 设为默认值即可 阅读全文

posted @ 2012-04-20 16:19 悟生慧 阅读(904) 评论(0) 推荐(0) 编辑

2012年4月19日

ASP.NET 1.0

摘要: 1.寻找入口方法 Global.asax文件 URL路由路由名称 带有参数的URL2.寻找Controller3.寻找Action一个Controller可以包含多个Action, MVC模式中Controller角色的具体实现逻辑都是在Action中的.4.寻找View5.页面展示三、Routing的作用回来看我们的Url: localhost/home/indexlocalhost是域名, 所以首先要去掉域名部分: home/index对应了上面代码中的这种URL结构: {controller}/{action}/{id}因为我们建立了这种Url结构的识别规则, 所以能够识别出 Contr 阅读全文

posted @ 2012-04-19 15:16 悟生慧 阅读(159) 评论(0) 推荐(0) 编辑

2012年4月17日

winfrom的右击菜单项事件中如何获取关联控件的引用

摘要: private void toolStripMenuItem_Click(object sender, EventArgs e) { ToolStripMenuItem tsi = (ToolStripMenuItem)sender;//转换类型 ContextMenuStrip strip = tsi.GetCurrentParent() as ContextMenuStrip;//检索作为当前ToolStripItem的容器 Control c = strip.SourceControl;//获取使Co... 阅读全文

posted @ 2012-04-17 10:38 悟生慧 阅读(1106) 评论(0) 推荐(0) 编辑

2012年4月13日

c# 如何用SplitContainer将From分割成上下两部分 即纵向分割窗口

摘要: 控制 SplitContainer 是横向分割窗体还是纵向分割窗口是由 SplitContainer 的 Orientation 属性决定的。this.splitContainer1.Orientation=Orientation.Horizontal;this.splitContainer1.Orientation = Orientation.Vertical; 阅读全文

posted @ 2012-04-13 10:51 悟生慧 阅读(14809) 评论(0) 推荐(1) 编辑

2012年4月6日

C# WinForm的PictureBox控件图片的拉伸或收缩方式跟随着控件的大小

摘要: 图片填充整个PictureBox只需要设置属性pictureBox.SizeMode = PictureBoxSizeMode.StretchImage; 阅读全文

posted @ 2012-04-06 12:07 悟生慧 阅读(17786) 评论(0) 推荐(0) 编辑

2012年3月29日

C# winfrom动态加载TreeView控件

摘要: 如果需要给TreeNode绑定自己想要的属性解决办法? 自定义TreeNode 继承自.net的TreeNode后 添加属性如: public class CustomTrNode : TreeNode { /// <summary> /// 属性1:控件类型 /// </summary> public object ControlType { get; set; } /// <summary> /// 属性2:父ID /// </summary> public object ParentID { get; set; } }在 NodeMouse 阅读全文

posted @ 2012-03-29 16:54 悟生慧 阅读(4702) 评论(0) 推荐(1) 编辑

2012年3月28日

powerdesigner的安装与使用技巧

摘要: http://wenku.baidu.com/view/8994aae8102de2bd960588a3.htmlpowerdesigner的安装与使用技巧 阅读全文

posted @ 2012-03-28 11:42 悟生慧 阅读(219) 评论(0) 推荐(0) 编辑

2012年3月22日

让包含GridView的div或panel的滚动条自己拉到底部怎么做?

摘要: http://social.microsoft.com/Forums/es-ES/295/thread/5c7c219c-f41f-49ca-b74d-ef71c6d2f06b自行解决,function afteradd() { var div = document.getElementById('gvdiv'); div.scrollTop = div.scrollHeight; }增加完行后执行ScriptManager.RegisterStartupScript(this, this.GetType(), "", "<script la 阅读全文

posted @ 2012-03-22 10:50 悟生慧 阅读(570) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页

导航