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

Peter Dennis Bartok peter@novonyx.com
Tue, 18 May 2004 10:06:03 -0600


What version of Wine?
What version of Mono?
What OS?

Peter


-----Original Message-----
From: "Juergen Moeller" <juergen.moeller@elektrobude.de>
To: <mono-winforms-list@lists.ximian.com>
Date: 18 May, 2004 06:59
Subject: [Mono-winforms-list] SWF.Label is upside-down


>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
>_______________________________________________
>Mono-winforms-list maillist  -  Mono-winforms-list@lists.ximian.com
>http://lists.ximian.com/mailman/listinfo/mono-winforms-list
>
>