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

搜索资源列表

  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. 图像旋转 //以任意角度旋转显示图像 if(this.StrFileName.Trim()=="") return; System.Drawing.Bitmap MyBitmap=new Bitmap(this.StrFileName); Graphics g = e.Graphics; TextureBrush MyBrush = new TextureBrush(MyBitmap); switch(this.iFlag) { case 1: MyBrush.RotateTransform(
  3. 所属分类:其它

    • 发布日期:2009-12-22
    • 文件大小:217088
    • 提供者:a5715721
  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. 简单的时钟适合初学者

  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#播放器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 QuartzTypeLib;//播放器 using System.Runtime.InteropServices;//播放声音 name
  3. 所属分类:C#

    • 发布日期:2011-01-01
    • 文件大小:111616
    • 提供者:lizhihua123456
  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#t自定义Button

  2. using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Windows.Forms; using System.Diagnostics; using System.Drawing.Drawing2D; namespa
  3. 所属分类:C#

    • 发布日期:2013-03-17
    • 文件大小:44032
    • 提供者:zs7690958
  1. c#连连看游戏

  2. 源码,vs2010开发。部分代码: private void Form1_Load(object sender, EventArgs e) { Source = (Bitmap)Image.FromFile("..\\..\\res\\animal.bmp"); this.pictureBox1.Height = W * (m_nRow + 2); this.pictureBox1.Width = W * (m_nCol+2); this.pictureBox1.Top = 0; this.p
  3. 所属分类:C#

    • 发布日期:2014-03-19
    • 文件大小:317440
    • 提供者:oysd0628
  1. g.FillRectangle(Brushes.White, this.ClientRectangle);

  2. g.FillRectangle(Brushes.White, this.ClientRectangle); Rectangle r = new Rectangle(10, 10, 60, 180); g.FillRectangle(Brushes.LightGray, r); Rectangle r1 = new Rectangle(10, 10, 60, 60); Rectangle r2 = new Rectangle(10, 70, 60, 60); Rectangle r3 = new
  3. 所属分类:其它

    • 发布日期:2008-10-19
    • 文件大小:2048
    • 提供者:zhangwenwuqqq
  1. 用paint方法渐变的窗口背景,using System.Drawing.Drawing2D的应用,C#源代码Graphics g=e.Graphics;

  2. 用paint方法渐变的窗口背景,using System.Drawing.Drawing2D的应用,C#源代码Graphics g=e.Graphics; Color FColor=Color.Blue; Color TColor=Color.Yellow; Brush b =new LinearGradientBrush(this.ClientRectangle, FColor, TColor, LinearGradientMode.ForwardDiagonal); g.FillRecta
  3. 所属分类:C#

    • 发布日期:2008-12-22
    • 文件大小:36864
    • 提供者:gouyue
  1. 设置窗体渐变色背景图像,C#源代码 Rectangle MyRect = this.ClientRectangle;

  2. 设置窗体渐变色背景图像,C#源代码 Rectangle MyRect = this.ClientRectangle; Bitmap MyBmp = new Bitmap(MyRect.Width, MyRect.Height); Graphics g = Graphics.FromImage(MyBmp); LinearGradientBrush MyBrush = new LinearGradientBrush(MyRect, Color.Blue, Color.Black, LinearG
  3. 所属分类:C#

  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 DoubleBufferDraw { public partial class DrawLine : Form { class LineObj {
  3. 所属分类:C#

    • 发布日期:2009-03-10
    • 文件大小:25600
    • 提供者:smxgxq