在窗体上显示字符串不用压缩包的,
Graphics g = this.CreateGraphics();
g.FillRectangle(new SolidBrush(Color.FromArgb(180, Color.White)), ClientRectangle);
String drawString = "HELLO";
String drawString1 = "HELLO WORLD";
SolidBrush titleShadowBrush = new SolidBrush(Color.Black);
Font myFont = new Font("Impact", 36);
Pen blackPen = new Pen(Color.Black);
g.DrawString(drawString,myFont,titleShadowBrush,new PointF(150.0F,30.0F));
g.DrawString(drawString1, myFont, titleShadowBrush, new PointF(10.0F, 150.0F));
这样就行了。。。。。。你可以试试!!