-
自定义的DatagridView控件,提供了常见的几种常见操作的自定义函数。
主要函数
GetValue:获取指定行和列的Cell Value
Se...
自定义的DatagridView控件,提供了常见的几种常见操作的自定义函数。
主要函数
GetValue:获取指定行和列的Cell Value
SetValue:设置指定行和列的Cell Value
-DatagridView custom controls, provides a common operation of some common self-defined function. The main function GetValue: access to the specified rows and columns of the Cell Value SetValue: Set the specified rows and columns of the Cell Value
- 2022-07-16 21:00:39下载
- 积分:1
-
kociemba S S立方体魔方算法.
魔方的kociemba算法
- 2022-01-26 05:28:41下载
- 积分:1
-
CS lessons and lectures from american university
CS lessons and lectures from american university
- 2023-03-19 01:25:02下载
- 积分:1
-
Of GPS data to RINEX format deal!
可对GPS数据的RINEX格式文件进行处理!-Of GPS data to RINEX format deal!
- 2022-02-07 20:26:16下载
- 积分:1
-
C++教程的指针
C++ Tutorial on pointers
- 2022-07-07 03:16:36下载
- 积分:1
-
仿OUTLOOK
仿OUTLOOK-imitation OUTLOOK
- 2022-08-08 18:24:10下载
- 积分:1
-
A very funny small program which has a unexpectable result
[趣味其他] 一个非常有趣的小程序 2002-04-22 21 33375 一个非常有趣的小程序,会有令你意想不到的结果哟!-A very funny small program which has a unexpectable result
- 2022-09-13 21:50:02下载
- 积分:1
-
利用Windows消息获取Memo的行和列 是了解Windows消息的基础实例!...
利用Windows消息获取Memo的行和列 是了解Windows消息的基础实例!-use Windows Message Access Memory of rows and columns of information to understand the basis for Windows examples!
- 2022-07-22 00:33:31下载
- 积分:1
-
打印ASCII码表及九九乘法表
实现多种方式,有良好的界面选择菜单...
打印ASCII码表及九九乘法表
实现多种方式,有良好的界面选择菜单-Print ASCII code table and the multiplication table to achieve a variety of ways, and a good choice of menu interface
- 2022-10-29 19:55:04下载
- 积分:1
-
C语言实现贪吃蛇
//: Snake.c
/* * * * * * * * * * * * * * * * * * * * * * *
// Project: RedSnake(贪吃蛇)
// Author: Problue
// Version: 1.0
// Date: 19:55 2012-10-29
* * * * * * * * * * * * * * * * * * * * * * */
#include
#include
#include
#include "pcc32.h"
// 定义地图的尺寸及坐标
#define MAP_WIDTH 32 // 地图宽度
#define MAP_HEIGHT 32 // 地图高度
#define OFFSET_X 1 // 地图左右的边距
#define OFFSET_Y 1 // 地图上下的边距
#define TOTAL_WIDTH (MAP_WIDTH + OFFSET_X * 2) // 窗口宽度
#define TOTAL_HEIGHT (MAP_HEIGHT + OFFSET_Y * 2) // 窗口高度
#define GotoMap(x, y) gotoTextPos((x) * 2, (y))
// 定义地图方格的状态,分别为: 空格、蛇头、蛇身、蛇尾、食物
#define BS_SPACE 0
#define BS_SHEAD 1
#define BS_SBODY 2
#define BS_STAIL 3
#define BS_FOOD 4
// 蛇默认长度
#define SNAKE_MIN_LEN 5
// 定义蛇运动方向: 上、下、左、右
#define DIR_UP 1
#define DIR_DOWN 2
#define DIR_LEFT 3
- 2022-05-15 19:59:34下载
- 积分:1