标题:Windows 窗体上绘制图形 (Visual C#)代码不显示
取消只看楼主
胡颖杰
Rank: 1
等 级:新手上路
帖 子:15
专家分:7
注 册:2009-7-8
结帖率:66.67%
 问题点数:0 回复次数:1 
Windows 窗体上绘制图形 (Visual C#)代码不显示

        private void button1_Click(object sender, EventArgs e)
        {
            Graphics objGraphics = null;
            objGraphics = this.CreateGraphics();
            objGraphics.Clear(SystemColors.Control);
            objGraphics.DrawRectangle(Pens.Blue,
                picShowPicture1.Left - 1, picShowPicture1.Top - 1,
                picShowPicture1.Width + 1, picShowPicture1.Height + 1);
            objGraphics.Dispose();


        }


这段代码中objGraphics.DrawRectangle(Pens.Blue,
                picShowPicture1.Left - 1, picShowPicture1.Top - 1,
                picShowPicture1.Width + 1, picShowPicture1.Height + 1);
是在图片框空件外面绘制一个蓝色的线框,为什么我代码谈加上去却没显示呢?而且也没报代码错误!


求助!!!!!!!
搜索更多相关主题的帖子: Visual 图形 绘制 Windows 窗体 
2009-09-24 02:19
胡颖杰
Rank: 1
等 级:新手上路
帖 子:15
专家分:7
注 册:2009-7-8
得分:0 
谢谢!已经解决了,问题出在控件的属性名上面!
2009-09-24 13:50



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




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

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