[Mono-winforms-list] SWF.Label is upside-down

Juergen Moeller juergen.moeller@elektrobude.de
Tue, 18 May 2004 14:59:03 +0200


Hello,

i have tried a very little "swf-hello world" application:

-------
using System;
using System.Windows.Forms;

namespace helloworldapp 
{
	class MainForm : System.Windows.Forms.Form
	{
		private System.ComponentModel.IContainer components;
		private System.Windows.Forms.Label label;

		public MainForm()
		{
			InitializeComponent();
		}
	
		void InitializeComponent() {
			this.components = new System.ComponentModel.Container();
			this.label = new System.Windows.Forms.Label();
			this.label.Text = "Hello World!"; 
			this.label.Name = "label";
			this.Controls.Add(this.label);
			this.Name = "MainForm";
			this.Text = "Hello World!";
		}
			
		[STAThread]
		public static void Main(string[] args)
		{
			Application.Run(new MainForm());
		}
	}			
}
-----------
Compiling is fine... Executing is fine... BUT the label is upside-down????
Why?

Thanks,
Juergen