[Mono-bugs] [Bug 77882][Min] Changed - Textbox Renders text backward
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Thu Mar 23 02:01:56 EST 2006
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by yoshi_yaki at msn.com.
http://bugzilla.ximian.com/show_bug.cgi?id=77882
--- shadow/77882 2006-03-23 01:36:35.000000000 -0500
+++ shadow/77882.tmp.20789 2006-03-23 02:01:56.000000000 -0500
@@ -1,12 +1,12 @@
Bug#: 77882
Product: Mono: Class Libraries
Version: 1.1
OS: unknown
OS Details: Slackware 10.1, Linux Kernel 2.6.12
-Status: NEEDINFO
+Status: REOPENED
Resolution:
Severity: Unknown
Priority: Minor
Component: Windows.Forms
AssignedTo: mono-bugs at ximian.com
ReportedBy: yoshi_yaki at msn.com
@@ -53,6 +53,53 @@
Explain 'renders backwards' you mean you type "ABC" and it
shows "CBA"? What's your locale? Are you up-to-date on libgdiplus and
system.drawing. This obviously usually renders the correct way.
Can you attach the exact code you used and maybe a screenshot showing
how it is wrong on your system?
+
+------- Additional Comments From yoshi_yaki at msn.com 2006-03-23 02:01 -------
+libgdiplus is from last the last official release. System.Drawing as
+well. Before I installed this, I had the previous official release of
+mono prior to downloading this daily build.
+
+I mean text renders backward as you say, instead of ABC I get CBA.
+
+Here is my code snippet
+using System;
+using System.Drawing;
+using System.Windows.Forms;
+
+namespace TextBoxTest
+{
+ public class Form1 : System.Windows.Forms.Form
+ {
+ public Form1()
+ {
+ InitializeComponent();
+ }
+
+ private void InitializeComponent()
+ {
+ //
+ //Textbox
+ //
+ TextBox txt = new TextBox();
+ txt.Size = new Size(100,40);
+ txt.Location = new Point(10,10);
+ txt.Name = "TextBox1";
+ txt.Multiline = true;
+ //
+ //Form1
+ //
+ this.Size = new Size(300,300);
+ this.Controls.Add(txt);
+ this.Name = "Form1";
+ this.Text = "Form1";
+ }
+ static void Main()
+ {
+ Application.Run(new Form1());
+ }
+ }
+}
+
More information about the mono-bugs
mailing list