本文介绍了用于定位位图/图形对象的C#代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨我使用以下代码创建了一个黄色的小矩形.但它始终显示在顶部.同一页面上的其他控件(例如文本框/按钮)不可见.

HiI have created a small-yellow rectangle using following code. But it is always displaying at the top. Other control(eg.textbox/button) on same page is not visible.

//=======================================
protected void Page_Load(object sender, EventArgs e)
    {
        Bitmap objBMP = new Bitmap(60, 20);
        Graphics objGraphics = Graphics.FromImage(objBMP);

        objGraphics.Clear(Color.Yellow);
        objGraphics.TextRenderingHint = TextRenderingHint.AntiAlias;

        Response.ContentType = "image/GIF";
        objBMP.Save(Response.OutputStream, ImageFormat.Gif);
        objGraphics.Dispose();
        objBMP.Dispose();

    }
//======================================



我该怎么做才能在表格标签的td标签中显示该标签并查看同一页面的所有其他内容?



What shall I do to display this in a td-tag within a table-tag and view all other content of the same page?

推荐答案


这篇关于用于定位位图/图形对象的C#代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-01 22:35