• ----:)欢迎访问源码网(:----
  • 首页
  • 博客
  • 学院
  • 下载
  • 开发论坛
  • 源码论坛
  • 发布源码
  • RSS
  • 笑话网
  • 百家姓
  • 繁體中文

源码网 - 中国第一源码门户
选择镜像:网通镜像 - 电信主站
  • 首 页
  • ASP源码
  • PHP源码
  • .NET源码
  • JSP源码
  • CGI源码
  • 编程相关
  • 书籍教程
  • 建站资源
  • 常用软件
FLASH源码 | 模板素材 | 服务器类 | 字体下载 | Delphi | Visual Basic | Visual C++ | Visual FoxPro | PowerBuilder | BCB
软件分类 | 最近更新 | 推荐软件 | TOP100 | 分类排行 | 发布软件 | 软件搜索 高级搜索



用户中心 添加到百度搜藏 添加到百度搜藏您的位置: 下载中心 >> 书籍教程 >> 编程开发 >> C# 书籍 >>下载页面
 

编辑推荐

  • 数万种管理资料免费下载!
  • 中文域名 双线空间
  • 找幽默笑话就上幽默网
  • 上论坛找商业破解网站程序
  • 玉米娃,新一代域名停放系统
  • 帮您寻找您需要的源码!!!
 
 

最新更新

  • C#软件项目开发全程剖析
  • 戏说面向对象程序设计(c#)
  • 精通CSharp简体中文版
  • C# 2005 NET3.0高级编程(第5版)
  • 24小时自学VC#2008
  • Microsoft Visual C# 2008 Step by Step
  • C#技术揭秘
  • Visual C# .NET精彩编程实例集锦-配套光盘文件
  • Microsoft Visual C# .NET 2003开发技巧大全-源代码
  • 突破C#编程实例五十讲-源文件
  • C#案例开发-源代码
  • C# 以及 .Net
  • C#专业项目实例开发
  • C# WINDOWS程序设计
  • C#知识类库
 
 

下载排行

  • C#专业项目实例开发
  • Visual C# .NET精彩编程实例集锦-配套光盘文件
  • 突破C#编程实例五十讲-源文件
  • C# 窗体编程(含源代码) Windows Forms Programming with C#
  • C#实例程序
  • C#案例开发-源代码
  • C#高级编程第2版(PDF)
  • C Sharp Windows Forms 程序设计
  • Visual C#图像处理程序设计实例
  • C#技术揭秘
  • C# 编程初级入门 C Sharp Programming for the Absolute Beginner
  • C# 入门经典(PDG)
  • C#程序员参考手册 (PDF)
  • C# WINDOWS程序设计
  • visual c#.net 编程经典-从vb6到visual c#.net 快速进阶
 
 

推荐下载

 
 

百度搜索

 
 

C# 窗体编程(含源代码) Windows Forms Programming with C#

  • 软件评价:
  • 是否推荐:否 相关评论
  • 软件大小:11.5MB
  • 运行环境:Win9x/NT/2000/XP/2003
  • 授权/语言:免费软件/简体中文 [?]
  • 收录/更新:2005-09-02/2005-09-02
  • 下载次数:
  • 标 签[?]:C#   窗体编程   
  • 相关链接:预览图片 暂无演示
  • 联系作者:
开始下载 查看软件介绍 评价此软件 查看评论 去论坛讨论
  • 软件简介: 
  • 上论坛找商业破解网站程序
  •  源码使用如需帮助,请到论坛发帖! 

  这是一本 Hello World 级的 C# 窗体编程的入门好书,配有详细图解和源代码。

  本书是打开 Windows Forms 编程之门的金钥匙,它所采用的编程语言是当前最为流行、最具潜力的 C#。本书内容详尽充实,共分为3个部分:初识WindowsForms、Windows Forms 基础和高级 Windows Forms。通过本书的学习,读者能够迅速掌握通过 .NET Framework 开发 Windows Forms 程序的所有相关技术。

  无论对开发桌面应用程序的 Windows 程序员,还是正在学习 Windows Forms 知识的开发人员,或者是毫无Windows开发经验的初学者,相信本书都是最佳的选择。

  在 .NET 环境中,GUI 元素--菜单、按钮、列表、树,当然还有窗口本身--都要通过WindowsForms框架来创建和使用。Windows Forms 是一个面向对象的类集,为丰富的 Windows 应用程序开发提供了高效、现代的编程环境。 本书围绕 Windows Forms 这个公共主题列举了大量示例,涵盖了 Windows Forms 编程的基础(如标签、菜单和按钮)以及高级概念(如自绘制列表、浏览器风格界面和自定义数据绑定)。

本书的目标读者是充满求知欲的初、中级程序员。

本书主要内容。
● 自绘制列表框
● 列表和树型视图
● 多文档界面
● 数据网格和数据绑定
● 拖放
● 实现可重用程序库、自动填充的组合框、键盘和鼠标处理、 打印和打印预览以及嵌入式Web浏览器

  The .NET Framework contains such a large selection of topics that it is impossible to cover all of them in a single book of any depth. This section introduces the focus of this book, and provides an overview of the contents and conventions used in the text.

  The end of this section describes the online forum available for any questions or comments on the book, and explains how the source code used in the book can be downloaded from the Internet. Before we discuss the book specifically, we should introduce the concept of namespaces. A namespace defines a group, or scope, of related classes, structures, and other types. A namespace is a bit like a family: it defines a group of distinct members with a common name and some shared sense of purpose.

  All objects in the .NET Framework, and indeed in C# itself, are organized into namespaces. The System namespace, for example, includes objects related to the framework itself, and most namespaces defined by .NET are nested within the System namespace. The System.Windows namespace defines types and namespaces related to the Windows operating system, while the System.Web namespace defines types and namespaces related to web pages and servers.

  This organization into namespaces permits two objects with the same base name to be distinct, much like two people can both share the same first name. For example, the Button class in the System.Web.UI.WebControls namespace represents a button on a web page, while the Button class in the System.Windows.Forms namespace represents a button in an application window. Other namespaces in .NET include the System.IO namespace for file and directory related objects, the System.

  Data namespace for database-related objects, the System.Drawing namespace for graphical objects, and the System.Security namespace for security objects. An overview of the more commonly used namespaces in .NET is provided in appendix B.
加至站内收藏下载错误报告
下载地址:上海电信 苏州电信 (新窗口下载) 下载帮助
更多"C# 窗体编程(含源代码) Windows Forms Programming with C#"下载


投一票: (12)      (0)
相关软件
  • C#发现之旅ASP.NET源码
  • 戏说面向对象程序设计(c#)
  • c#开发的QQ源码
  • 精通CSharp简体中文版
  • C# 2005 NET3.0高级编程(第5版)
  • QQ自动登录器 C# 源码 v1.0
  • 家庭管理系统 v1.0 beta (C# WINFORM)
  • ASP.NET基础教程—C#案例版
  • Pro ASP.NET 3.5 in C# 2008 Second Edition
  • Microsoft Visual C# 2008 Step by Step
相关资讯
  • 手动生成C#的COM包装类的常见问题和解决办法
  • C#下的SQL Server命名规范
  • 用C#通过Nokia手机发送短信(使用Nokia SDK3.0/原创)
  • C#实现迅雷专用链的加密与解密
  • C#日期格式化
  • C#的多线程机制探索
  • 网友评论:
  • 查看所有评论
  • 我要发表评论
您的网名:
留言主题:
你要发表的内容:

 
  • 字母检索
  • A
  • B
  • C
  • D
  • E
  • F
  • G
  • H
  • I
  • J
  • K
  • L
  • M
  • N
  • O
  • P
  • Q
  • R
  • S
  • T
  • U
  • V
  • W
  • X
  • Y
  • Z

关于本站 | 广告联系 | 版权声明 | 网站地图 | 发布软件 | 帮助中心 | 源码论坛

Copyright © 2008 CodePub.Com  程序支持:木翼  滇ICP备05005971号