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

搜索资源列表

  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. 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. ublic partial class Form1 : Form { Bitmap bmp; bool b; Point p, p1; Size sz; public Form1() { InitializeComponent(); bmp = new Bitmap(@"E:\a.bmp"); b = false; p = new Point(10, 10); sz = new Size(bmp.Width,bmp.Height); } private void Form1_Paint(obj
  3. 所属分类:C#

    • 发布日期:2013-06-11
    • 文件大小:2048
    • 提供者:u011035225
  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 edge { public partial class Form1 : Form { public Form1() { InitializeComp
  3. 所属分类:C#

    • 发布日期:2017-10-20
    • 文件大小:1048576
    • 提供者:liutao68
  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
  1. c# 实现雪花分形的示例

  2. C#都没人用了吗,网上想找个现成的雪花分形代码,都没找见,有C++,有python,有java的,就没有C#的,自己试试写一个吧。 public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Paint(object sender, PaintEventArgs e) { DrawKochSnow(e.Graphics);
  3. 所属分类:其它

    • 发布日期:2020-12-16
    • 文件大小:55296
    • 提供者:weixin_38689824
  1. c#创建Graphics对象的三种方法

  2. 方法一、利用控件或窗体的Paint事件中的PainEventArgs 在窗体或控件的Paint事件中接收对图形对象的引用,作为PaintEventArgs(PaintEventArgs指定绘制控件所用的Graphics)的一部分,在为控件创建绘制代码时,通常会使用此方法来获取对图形对象的引用。 例如: //窗体的Paint事件的响应方法 代码如下:private void form1_Paint(object sender, PaintEventArgs e) {     Graphics g
  3. 所属分类:其它

    • 发布日期:2021-01-01
    • 文件大小:35840
    • 提供者:weixin_38612304
  1. C#常用GDI+文字操作汇总

  2. 本文实例汇总了C#常用GDI+文字操作,包含了文字的投影、倒影、旋转等常见的效果,在进行C#应用程序开发中有不错的实用价值。分享给大家供大家参考之用。具体如下: 一、投影文字 private void Form1_Paint(object sender, PaintEventArgs e) { //投影文字 Graphics g = this.CreateGraphics(); //设置文本输出质量 g.TextRenderingHint = TextRenderingHint
  3. 所属分类:其它

    • 发布日期:2020-12-31
    • 文件大小:47104
    • 提供者:weixin_38522795