替代wpf中的picturebox.creategraphics?

时间:2013-06-28 10:06:37

标签: wpf winforms c#-4.0

我想在wpf应用程序中显示图像,该图像将根据用户输入的数据绘制为图形....当suer在输入数据后单击提交按钮时,应显示图像(图形)在表单上..我使用下面粘贴的代码在我的winform应用程序中做了同样的事情

string mData = txtmData.Text;
Graphics g = pictureBox1.CreateGraphics();
Brush br = new SolidBrush(Color.Black);
g.DrawString("*" + mData + "*", mFont, br, 50, 50);
WPF中的

我不喜欢pictureBox1.CreateGraphics();

0 个答案:

没有答案