自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 收藏
  • 关注

翻译 C#键盘事件应用

program.csusing System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms;namespace WindowsFormsApplication3{ static class Program { /// ///

2017-04-27 11:27:28 489

原创 c#

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace Windo

2017-04-20 10:55:12 455 1

原创 C#-----扩展方法

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication2{ static class Program //必须是静态类才可以添加扩展方法 { static void Main(

2017-04-13 11:17:25 252

转载 校园导航系统

#include "string.h"#include "stdio.h"#include "stdlib.h"#define Max 32767#define NUM 48typedef struct ArcCell{    int adj; /* 相邻接的景点之间的路程 */}ArcCell; /* 定义边的类型 */typedef struct Verte

2017-04-11 17:25:31 2246

原创 资源链接

MFC     资源下载:http://download.csdn.net/album/detail/3577/1/1

2017-04-11 16:12:05 978

转载 C#中out的使用和数组型参数

//数组型参数using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication4{    class Program    {        static void Main(string[] a

2017-04-06 11:27:32 1612

转载 显示接口的实现

/* 显示接口成员实现 */using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication3{ class Program { static void Main(string[] args)

2017-04-06 11:15:48 429

转载 委托多播

/* 委托可以调用多个方法,这种称为委托多播。一般时通过“+”或“-”运算符实现多播的增加或减少。 */using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication2{ class Program {

2017-04-06 10:56:02 758

转载 数据结构课程设计————校园导航系统

#include#include #include #define Max 10000#define NUM 11typedef struct ArcCell{int adj;char *info;}ArcCell;typedef struct VertexType{int number;char *sight;}VertexType;typed

2017-04-04 17:15:31 19442 11

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除