标题:画线问题
只看楼主
mextb1860
Rank: 1
等 级:新手上路
帖 子:179
专家分:0
注 册:2005-7-10
 问题点数:0 回复次数:4 
画线问题
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
protected override void OnPaint(PaintEventArgs e)
{
Graphics g=e.Graphics;
using (Pen blackPen=new Pen(Color.Black,1))
{
for(int y=0;y<ClientRectangle.Height;y+=ClientRectangle.Height/10)
{
g.DrawLine(blackPen,new Point(0,0),new Point(ClientRectangle.Width,y));

}

}

}
}

using (Pen blackPen=new Pen(Color.Black,1))
这是什么意思。怎么下面还有括号??
2006-03-18 18:52
mextb1860
Rank: 1
等 级:新手上路
帖 子:179
专家分:0
注 册:2005-7-10
得分:0 

还有为什么 程序启动会自动执行

protected override void OnPaint(PaintEventArgs e) 这个方法

2006-03-18 19:31
mextb1860
Rank: 1
等 级:新手上路
帖 子:179
专家分:0
注 册:2005-7-10
得分:0 

自己顶

2006-03-19 11:52
唐伯猫
Rank: 8Rank: 8
等 级:贵宾
威 望:45
帖 子:5323
专家分:58
注 册:2005-8-9
得分:0 
using (Pen blackPen=new Pen(Color.Black,1))

其实就相当于在这段代码前加上
using System;
然后using (Pen blackPen=new Pen(Color.Black,1))
就可以变为Pen blackPen=new Pen(Color.Black,1)

<iframe name="alimamaifrm" frameborder="0" marginheight="0" marginwidth="0" border="0" scrolling="no" width="300" height="170" src="/go/app/tbk_app/chongzhi_300_170.php?pid=mm_28854300_2441872_11377541&page=chongzhi_300_170.php&size_w=300&size_h=170&stru_phone=1&stru_game=1&stru_travel=1" ></iframe>
2006-03-21 09:31
唐伯猫
Rank: 8Rank: 8
等 级:贵宾
威 望:45
帖 子:5323
专家分:58
注 册:2005-8-9
得分:0 
以下是引用mextb1860在2006-3-18 19:31:00的发言:

还有为什么 程序启动会自动执行

protected override void OnPaint(PaintEventArgs e) 这个方法

override重载了方法onpaint.

如果不想让它自动执行,可这样写:
private void button1_Click(object sender, System.EventArgs e)
{
Graphics g=this.CreateGraphics();
using (Pen blackPen=new Pen(Color.Black,1))
{
for(int y=0;y<ClientRectangle.Height;y+=ClientRectangle.Height/10)
{
g.DrawLine(blackPen,new Point(0,0),new Point(ClientRectangle.Width,y));
}
}
}


<iframe name="alimamaifrm" frameborder="0" marginheight="0" marginwidth="0" border="0" scrolling="no" width="300" height="170" src="/go/app/tbk_app/chongzhi_300_170.php?pid=mm_28854300_2441872_11377541&page=chongzhi_300_170.php&size_w=300&size_h=170&stru_phone=1&stru_game=1&stru_travel=1" ></iframe>
2006-03-21 09:45



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-51233-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.324106 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved