|
説明不足ですみません
こんな感じなのですが・・・
namespace テスト
{
public partial class Form1 : Form
{
private Mes mes = new Mes();
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
mes.serf = "こんにちわ";
mes.JJ();
}
}
}
namespace テスト
{
class Mes:Form
{
public string serf;
public void JJ()
{
this.Invalidate();
}
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
Graphics g = e.Graphics;
if(serf != null){
Font font1 =new Font("MS ゴシック",18,FontStyle.Bold);//書式
SolidBrush brush =new SolidBrush(Color.Black);//色
RectangleF rect = new RectangleF(26,430,750,140);//領域
g.TextRenderingHint = TextRenderingHint.ClearTypeGridFit;//アンチエイリアス
g.DrawString(serf,font1,brush,rect);//描画
}
}
}
}
|