-
WcfRestFull 开发模式
%E3%80%90%E5%AE%9E%E4%BE%8B%E7%AE%80%E4%BB%8B%E3%80%91%3Cbr%20/%3E%0A%E3%80%90%E5%AE%9E%E4%BE%8B%E6%88%AA%E5%9B%BE%E3%80%91%3Cbr%20/%3E%0A%E3%80%90%E6%A0%B8%E5%BF%83%E4%BB%A3%E7%A0%81%E3%80%91%3Cbr%20/%3E
- 2015-01-04下载
- 积分:1
-
jsonp服务端例子代码
jsonp服务端例子代码
- 2015-05-27下载
- 积分:1
-
非Com形式 创建 桌面快捷方式 附完整类源码
调用方法: Shortcut sc = new Shortcut(); sc.Path = "目标文件地址"; sc.Arguments = "启动参数"; sc.WorkingDirectory = "启动文件的文件夹"; sc.Description = "描述"; sc.Save("这个快捷方式保存在哪");
- 2013-07-14下载
- 积分:1
-
C# 设计模式观察者模式 入门级示例
C# 设计模式观察者模式 入门级示例
- 2018-11-19下载
- 积分:1
-
Request的几种 Url 用法比较 有示例有源码
测试的url地址是http://www.test.com/testweb/default.aspx?id=1,结果如下:Request.ApplicationPath: /testwebRequest.CurrentExecutionFilePath: /testweb/default.aspxRequest.FilePath: /testweb/default.aspxRequest.Path:/testweb/default.aspxRequest.PathInfo:Request.PhysicalApplicationPath: E:WWW estwebRequest.PhysicalPath:E:WWW estwebdefault.aspxRequest.RawUrl:/testweb/default.aspx?id=1Request.Url.AbsolutePath:/testweb/default.aspxRequest.Url.AbsoluteUri: http://www.test.com/testweb/default.aspx?id=1Request.Url.Host:www.test.comRequest.Url.LocalPath:/testweb/default.aspx
- 2020-12-01 21:59:28下载
- 积分:1
-
winform案例,学校管理系统,非常完整的C#+ACCESS学校管理系统
一个非常完整的学校管理系统,使用C# ACCESS开发, 附加安装程序,支持所有基本的学校管理功能 包含所有源代码,可进行二次开发... 超级管理员 用户名及密码:admin 普通管理员 用户名及密码:test
- 2019-04-15下载
- 积分:1
-
C++Primer题解.pdf
C Primer 习题解答
- 2020-01-29下载
- 积分:1
-
报表设计器(EastReport)
做报表设计,非常简单实用,ReportMachia
- 2019-08-20下载
- 积分:1
-
C# 视频聊天源码
C# 视频聊天源码
- 2015-06-01下载
- 积分:1
-
动画效果浮动窗体实例
private void StopRectTimer_Tick(object sender, EventArgs e) { //如果鼠标在窗体上,则根据停靠位置显示整个窗体 if (this.Bounds.Contains(Cursor.Position)) { switch (this.StopDock) { case AnchorStyles.Top: this.Location = new Point(this.Location.X, 0); break; case AnchorStyles.Bottom: this.Location = new Point(this.Location.X, Screen.PrimaryScreen.Bounds.Height - this.Height); break; case AnchorStyles.Left: this.Location = new Point(0, this.Location.Y); break; case AnchorStyles.Right: this.Location = new Point(Screen.PrimaryScreen.Bounds.Width - this.Width, this.Location.Y); break; } } else //如果鼠标离开窗体,则根据停靠位置隐藏窗体,但须留出部分窗体边缘以便鼠标选中窗体 { switch (this.StopDock) { case AnchorStyles.Top: this.Location = new Point(this.Location.X, (this.Height - 3) * (-1)); break; case AnchorStyles.Bottom: this.Location = new Point(this.Location.X, Screen.PrimaryScreen.Bounds.Height - 5); break; case AnchorStyles.Left: this.Location = new Point((-1) * (this.Width - 3), this.Location.Y); break; case AnchorStyles.Right: this.Location = new Point(Screen.PrimaryScreen.Bounds.Width - 2, this.Location.Y); break; } } }
- 2015-06-10下载
- 积分:1