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

搜索资源列表

  1. 常出现的JAVA试题

  2. 1)以下哪个是Java应用程序main方法的有效定义? C A. public static void main(); B. public static void main( String args ); C. public static void main( String args[] ); D. public static void main( Graphics g ); E. public static boolean main( String a[] ); 2) 编译和运行以下代码的结
  3. 所属分类:Java

    • 发布日期:2009-11-13
    • 文件大小:103424
    • 提供者:tygghh
  1. C#开发的程序打印源码

  2. 求打印预览和打印的C#代码和命名空间 VS2005 C# 提问者:tomore 提问时间:08-10-20 20:29 其他答案 -------------------------------------------------------------------------------- winu 的答案 /// /// 定义打印文档 /// private PrintDocument printDocument = new PrintDocument(); /// /// 定义打印文
  3. 所属分类:C#

    • 发布日期:2009-12-07
    • 文件大小:67584
    • 提供者:chaolongit
  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. 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. C# WinForm控件美化之ImageComboBox

  2. 这篇文章中我们重点需要实现的是(3)、(4)两项功能,下面我们来介绍具体实现的方法。 第一步,实现ImageComboBoxItem类。 要实现显示图标,当然要给每个项添加与图标相关的信息了,ImageComboBoxItem类应该包括以下内容:文本(Text)、缩进的级别(Level)、图标的索引(ImageIndex、ImageKey),用户数据(Tag)。ImageComboBoxItem类实现了ISerializable接口,实现自定义序列化。ImageComboBoxItem类的类视
  3. 所属分类:硬件开发

    • 发布日期:2010-06-09
    • 文件大小:798720
    • 提供者:csdsuper
  1. Graphics Gems (Vol.2)

  2. Foreword By Andrew Glassner xvii Preface xix Mathematical Notation xxi Pseudo-Code xxiii Contributors xxix I I I I I 2 2 2 2 2D GEOMETRY AND ALGORITHMS D GEOMETRY AND ALGORITHMS D GEOMETRY AND ALGORITHMS D GEOMETRY AND ALGORITHMS D GEOMETRY AND ALGO
  3. 所属分类:C

    • 发布日期:2010-10-05
    • 文件大小:4194304
    • 提供者:osoon
  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. 动态折线图绘制

  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#打印程序

  2. raphics g = e.Graphics; g.DrawLine(Pens.Black, 10, 10, 200, 200); string filename = Path.Combine(Application.StartupPath, @"1.doc"); Bitmap image = new Bitmap(filename); g.DrawImage(image, 50, 100);
  3. 所属分类:C#

    • 发布日期:2015-11-27
    • 文件大小:275456
    • 提供者:u012008104
  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. 用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#源代码编写)Graphics g;

  2. 抓取并显示程序中的鼠标程序(C#源代码编写)Graphics g; private void Form1_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e) { Cursor.Draw(g,new Rectangle(e.X,e.Y,10,10)); } private void Form1_Load(object sender, System.EventArgs e) { g=this.CreateGraphics();
  3. 所属分类:C#

    • 发布日期:2009-01-07
    • 文件大小:36864
    • 提供者:scarbetter
  1. 阴影效果的文字程序(C#源代码编写) Graphics g = e.Graphics;

  2. 阴影效果的文字程序(C#源代码编写) Graphics g = e.Graphics; Font myFont; myFont = new Font("SansSerif", 40); SolidBrush textShadowBrush = new SolidBrush(Color.FromArgb(70, Color.Blue)); VisualStudio2008创建
  3. 所属分类:C#

    • 发布日期:2009-01-07
    • 文件大小:33792
    • 提供者:qq223857666
  1. 打印方法小议,页面设置对话框、打印预览对话框、打印对话框等功能,C#源代码 //字符串流对

  2. 打印方法小议,页面设置对话框、打印预览对话框、打印对话框等功能,C#源代码 //字符串流对 象,一行一行读取文本 private StringReader MyReader; private void button1_Click(object sender, EventArgs e) { //显示页面设置对话框 PageSetupDialog MyDlg = new PageSetupDialog(); MyDlg.Document = this.printDocument1; MyDlg.S
  3. 所属分类:C#

    • 发布日期:2009-01-09
    • 文件大小:37888
    • 提供者:gouyue
  1. 设置背景颜色,C#源代码//绘制组合框列表项

  2. 设置背景颜色,C#源代码//绘制组合框列表项 ComboBox MyCombox = (ComboBox)sender; if (e.Index == -1) return; if (sender == null) return; SolidBrush MyBrush = (SolidBrush)MyCombox.Items[e.Index]; Graphics g = e.Graphics; //如果已经进行选择,则绘制正确的背景颜色和聚集框 e.DrawBackground(); e.Dr
  3. 所属分类:C#

    • 发布日期:2009-01-16
    • 文件大小:69632
    • 提供者:none13
  1. Introduction to Visual Computing: Core Concepts in Computer Vision, Graphics

  2. Introduction to Visual Computing: Core Concepts in Computer Vision, Graphics, and Image Processing covers the fundamental concepts of visual computing. Whereas past books have treated these concepts within the context of specific fields such as compu
  3. 所属分类:讲义

    • 发布日期:2019-02-23
    • 文件大小:117440512
    • 提供者:wang1062807258
  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. android.graphics.Matrix类用法分析

  2. 本文实例讲述了android.graphics.Matrix类用法。分享给大家供大家参考,具体如下: Matrix类包含了一个3×3的矩阵用来改变坐标,它没有一个构造器来初始化它里边的内容,所以创建实例后需要调用reset()方法生成一个标准matrix,或者调用set..一类的函数,比如setTranslate, setRotate,,该函数将会决定matrix如何来改变坐标。SDK里边没有讲述Matrix的3×3矩阵是如何改变点的坐标值的,但是我在代码里边通过打印那9个点的值时,大致可以得到
  3. 所属分类:其它

    • 发布日期:2021-01-04
    • 文件大小:87040
    • 提供者:weixin_38614825
« 12 3 4 5 6 7 8 9 10 »