1

我无法显示在 C# 应用程序中创建的位图。我创建以下位图:

int w = 150; 
int h = w/3; 
Bitmap aBMP = new Bitmap(w, h); 
using (Graphics G = Graphics.FromImage(aBMP)) 
{ ...G.FillRectangle(...) } //here I am painting an image

稍后在应用程序中,我将图像保存如下:

aBMP.Save(anIMGfilename);

通过右键单击生成的图像属性,我没有收到与任何其他位图图像一起获得的安全选项卡。你见过这种行为吗?

4

1 回答 1

0

当你使用绝对位置时,你不能使用浮动,你必须设置 left 和 top 并且它的父级有一个相对位置

<!--[if IE 8]>
#frame{
  position:relative;
}
#image {    
position: absolute;     
text-align: right;  
height: 70px;   
width: 400px;  
left:0;
top:10px;   
}
<![endif]-->
于 2012-10-13T08:58:22.823 回答