您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. c#做的俄罗斯方块,不下后悔

  2. 提供一个核心类,接口仅几个,方便外围开发,你可以在此基础上做一些扩展,如使其界面更美观,方块更美观等 class DyPanel :Panel { #region 类属性 private Timer t_slow,t_fast; private XY current_p, start_p; private XY []cur_square; private XY []afterChange_squar; private int wi dth, height; private SolidBrush
  3. 所属分类:C#

    • 发布日期:2009-05-18
    • 文件大小:247808
    • 提供者:zhou1zhou8
  1. 如何创建不规则窗体,可以实现

  2. 这需要用到多态具体代码如下using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Drawing.Drawing2D;namespace 窗体重写{ public partial class MainForm :
  3. 所属分类:其它

    • 发布日期:2010-01-08
    • 文件大小:821
    • 提供者:water87925
  1. WinCE 电池状态

  2. 在WinCE操作系统中,用于读取电池的状态。 调用方法: //主窗口电池 Battery battery = new Battery(); Battery.State SLast = Battery.State.Normal; //主界面时钟,用户查看电池状态 private void timer2_Tick(object sender, EventArgs e) { ((Timer)sender).Enabled = false; Battery.SystemIdleTimerReset()
  3. 所属分类:其它

  1. ClipImageClipImageClipImageClipImageClipImageClipImage

  2. using System; using System.Drawing; using System.Windows.Forms; namespace ClipImage { public partial class FormImage : Form { #region 自定义对象 private Point position; private Rectangle clip; private NotifyIcon notifyInfo; #endregion public FormImage()
  3. 所属分类:其它

    • 发布日期:2010-03-09
    • 文件大小:24576
    • 提供者:kingzhexian
  1. C#100例题 献给c#初学者

  2. 给初学者的简单例题! private System.ComponentModel.IContainer components; private const int kNumberOfRows = 8; private const int kNumberOfTries = 3; private int NumTotalBricks = 0; private int NumBalls = 0; private Ball TheBall = new Ball(); private Paddle Th
  3. 所属分类:C#

    • 发布日期:2010-04-22
    • 文件大小:3145728
    • 提供者:lixiaolinlinlin
  1. 换肤button

  2. 免费QF控件下载 Button :QF按钮控件表示 QF(Windows增强) 按钮控件。下表列出了由 Button 类型公开的成员。 公共构造函数 public Button() 摘要:  初始化 Button 类的新实例。 公共属性 Style { set; get; }  摘要:  获取或设置控件的样式 受保护的方法 void Dispose(bool disposing)  摘要:  清理所有正在使用的资源。 参数:  disposing: 如果应释放托管资源,为 true;否则为 f
  3. 所属分类:C#

    • 发布日期:2008-01-07
    • 文件大小:16384
    • 提供者:evenbing
  1. 作者:金哲显编的软件

  2. using System; using System.Drawing; using System.Windows.Forms; namespace ClipImage { public partial class FormImage : Form { #region private Point position; private Rectangle clip; #endregion public FormImage() { #region InitializeComponent(); this
  3. 所属分类:其它

    • 发布日期:2010-05-08
    • 文件大小:57344
    • 提供者:kingzhexian
  1. c# 制作和实现波形

  2. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace huiji { public partial class Form1 : Form { public Form1() { InitializeCom
  3. 所属分类:C#

    • 发布日期:2010-05-14
    • 文件大小:31744
    • 提供者:yadikar1218
  1. 简单的时钟适合初学者

  2. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace MyClockApp { public partial class Form1 : Form { public Form1() { Initiali
  3. 所属分类:Java

    • 发布日期:2010-05-15
    • 文件大小:35840
    • 提供者:shengyuewuxin
  1. 基于c#的图像处理源代码

  2. 基于C#的典型图像处理算法 第二章: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; //using System.Drawing.Drawing2D; namespace gray { public partial
  3. 所属分类:C#

    • 发布日期:2010-12-11
    • 文件大小:1005568
    • 提供者:zhangld79
  1. C#下的俄罗斯方块完整代码

  2. 俄罗斯方块完整代码 private void Form1_Paint(object sender, PaintEventArgs e) private void timer1_Tick(object sender, EventArgs e) private void Form1_KeyPress(object sender, KeyPressEventArgs e)
  3. 所属分类:C#

    • 发布日期:2010-12-15
    • 文件大小:32768
    • 提供者:tcl415913
  1. c#漂亮的小时钟程序

  2. 比较实用的c#小程序,小时钟 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; //download by http://www.codefans.net namespace MyClockApp { public p
  3. 所属分类:C#

    • 发布日期:2011-01-16
    • 文件大小:14336
    • 提供者:ericforever
  1. 用C#开发的俄罗斯方块

  2. 用lblMode_Paint函数分别画出4条横线 4条竖线,部分程序源代码如下: private void lblMode_Paint(object sender, PaintEventArgs e) { Graphics gp = e.Graphics; gp.Clear(Color.Black); Pen p = new Pen(Color.White); for (int i = 31; i < 155; i = i + 31)//画横白线 gp.DrawLine(p, 1, i,
  3. 所属分类:.Net

    • 发布日期:2011-04-03
    • 文件大小:406528
    • 提供者:jiarui919
  1. C#画图之C#画点方法总结

  2. 简单总结了三种C#画点方法 1)public void DrawLineFloat(PaintEventArgs e) 2)g.DrawRectangle(thepen, ps[i].X, ps[i].Y, 0.5F, 0.5F); 3)g.DrawImageUnscaled(bm, e.X, e.Y);
  3. 所属分类:C#

    • 发布日期:2011-05-02
    • 文件大小:23552
    • 提供者:wg_cehui
  1. C# 俄罗斯方块游戏

  2. C#做的俄罗斯方块游戏using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Xml; using System.IO; using System.Security.Cryptography; using System.Text; using System.Runtime.Serializ
  3. 所属分类:C#

    • 发布日期:2011-07-02
    • 文件大小:577536
    • 提供者:douzhi0940
  1. 动态折线图绘制

  2. private void mpanelXaxisPaint(object sender, PaintEventArgs e) { try { int temp = 0; //Consider the graphics object of the x axis panel. Graphics g = e.Graphics; pnlXAxis.BackColor = Color.FromName(XAxisBackColor.Name); //The smoothing mode is set t
  3. 所属分类:C#

    • 发布日期:2012-03-10
    • 文件大小:121856
    • 提供者:accesszhb
  1. C#写的230象棋

  2. using System; using System.Drawing; using System.Windows.Forms; namespace 象棋 { public partial class Form1 : Form//依然纯代码 不过要调用图片了 棋盘自己画的 棋子是图片 { int[,] ai ={{5,4,3,2,1,2,3,4,5}, {0,0,0,0,0,0,0,0,0}, {0,6,0,0,0,0,0,6,0}, {7,0,7,0,7,0,7,0,7}, {0,0,0,0,
  3. 所属分类:C#

    • 发布日期:2012-03-16
    • 文件大小:237568
    • 提供者:xiaoshenyi2
  1. C# for CSDN 乱七八糟的看不懂

  2. 没法下载,到这里折腾一把试试。 本文由abc2253130贡献 doc文档可能在WAP端浏览体验不佳。建议您优先选择TXT,或下载源文件到本机查看。 C#(WINFORM)学习 一、 C#基础 基础 类型和变量 类型和变量 类型 C# 支持两种类型:“值类型”和“引用类型”。值类型包括简单类型(如 char、int 和 float 等)、枚举类型和结构类型。引用类型包括类 (Class)类 型、接口类型、委托类型和数组类型。 变量的类型声明 变量的类型声明 每个变量必须预先声明其类型。如 in
  3. 所属分类:C#

    • 发布日期:2012-06-03
    • 文件大小:83968
    • 提供者:jaredsun
  1. C#实现抛物线插值函数

  2. 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 WindowsFormsApplication2 { public partial c
  3. 所属分类:C#

    • 发布日期:2012-12-28
    • 文件大小:2048
    • 提供者:moyan1234567890
  1. 用图像平铺形状程序(C#源代码编写)private void Form1_Paint(object sender, PaintEventArgs e)

  2. 用图像平铺形状程序(C#源代码编写)private void Form1_Paint(object sender, PaintEventArgs e) { Image image = new Bitmap("..\\..\\test.bmp"); TextureBrush tBrush = new TextureBrush(image); tBrush.WrapMode = WrapMode.TileFlipXY; e.Graphics.FillRectangle(tBrush, new Re
  3. 所属分类:C#

    • 发布日期:2009-01-07
    • 文件大小:36864
    • 提供者:zlyczc
« 12 3 »