http://bugs.winehq.org/show_bug.cgi?id=34102
--- Comment #1 from masakazu matsubara matsu.no.page@gmail.com 2013-07-22 00:30:34 CDT --- sample (C#)
private void Form1_Paint(object sender, PaintEventArgs e) { Graphics g = this.CreateGraphics(); Font font = new Font("Arial", 20); Brush brush = new SolidBrush(Color.Black); RectangleF rect1 = new RectangleF(10, 10, 0, 0); RectangleF rect2 = new RectangleF(10, 100, 200, 50);
// Not drawn (Will be drawn on Windows) g.DrawString("ABCDE", font, brush, rect1);
// Will be drawn g.DrawString("abcde", font, brush, rect2); }