- 博客(9)
- 资源 (6)
- 收藏
- 关注
原创 鼠标停留在GridView某一行时 行的颜色改变
protected void gvdegreetype_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { e.Row.Attributes.Add("onmouseover",
2008-07-29 14:36:00
507
原创 用ASP.Net写一个发送ICQ信息的程序
用ASP.Net写一个发送ICQ信息的程序 ge="C#" %> public void Page_Load(Object src,EventArgs e) { ICQ_Show.Text="如果提交后,在这里显示信息"; } public void Send_Click(Object sender,EventArgs e) { string sendmsg; string
2008-07-29 14:32:00
486
原创 UDP学习
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Net.Sockets
2008-07-29 14:21:00
476
原创 鼠标拖动这个矩形(GDI+)
public partial class MoveRect : Form { private Rectangle m_Rect; private Point m_LastMSPoint; public MoveRect() { InitializeComponent(); this.SetStyle(ControlStyle
2008-07-16 17:10:00
1843
原创 使图形随滚动轮旋转
namespace WindowsApplication1{ public partial class Form1 : Form { Bitmap memBitmap; //Bitmap封装 GDI+ 位图,此位图由图形图像及其属性的像素数据组成。Bitmap 是用于处理由像素数据定义的图像的对象。 float currRotation
2008-07-16 16:47:00
505
原创 这个包含所有GDI+小例子,我积分不够,只能代码!
using System;using System.Drawing;using System.Drawing.Drawing2D;using System.Threading;using System.IO;using System.Reflection;using System.Drawing.Imaging;using System.Drawing.Text;
2008-07-03 16:41:00
2403
原创 简单的图片飘C#(Winform)
//4个PictureBox ,4个Timer控件 然后把下面的复制上即可public partial class Form1 : Form { public int x1 = 8; public int x2 = 148; public int x3 = 248; public i
2008-07-03 16:11:00
704
原创 学习GDI+ 随便画着玩,研究中c#(winform)
//重写OnPaint方法后,添加以下代码,注释部分可以放开!同时要注释点相应画刷 protected override void OnPaint(PaintEventArgs e) { Graphics g = e.Graphics;//画布 //画笔 Pen redPen
2008-07-03 16:08:00
762
原创 学习GDI+画出汽车行进路线c#(winform)
//添加个按钮,一个Timer空间看效果(还没学会拐弯)private void button1_Click(object sender, EventArgs e) { Graphics graphics = this.CreateGraphics(); graphics.Clear(Color.White)
2008-07-03 16:01:00
2579
1
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人