J Arrizza | 3 Dec 2010 21:53
Picon

Transparency and alpha values

I have a panel with a background that is partially transparent. The alpha value is around 60. On windows I can see through the background to the panel and components behind it.  In mono it is opaque.

We are using 2.4.4 and 3.5 framework. Is there a fix in later version? Or is there a known workaround?

Tia
John

_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list
ldvhome | 3 Dec 2010 22:54
Picon

Re: How can we deploy .Net winform for MAC OS.


Running applications on MacOS X is very similar to linux systems, from the
terminal:

mono myprogram.exe
--

-- 
View this message in context: http://mono.1490590.n4.nabble.com/How-can-we-deploy-Net-winform-for-MAC-OS-tp3063154p3071831.html
Sent from the Mono - WinForms mailing list archive at Nabble.com.
_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list

Andrew Brehm | 6 Dec 2010 17:33
Picon
Gravatar

Re: How can we deploy .Net winform for MAC OS.


jeetu wrote:
> 
> Hello,
> 
> We want deploy .Net application for Mac OS. We already downloaded
> “MonoDevelop”.
> and Mac OS only support jar files, so how can we deploy winforms
> application .jar files.
> Please advise and reply ASAP.
> 
> 

You don't need MonoDevelop to run a Windows.Forms application on Mac OS.

You can run Windows.Forms applications on Mac OS the same as on Linux or
Windows (with Mono):

"mono program.exe"

Alternatively you can use macpack to create a Mac application bundle.

http://www.mono-project.com/Guide:Running_Mono_Applications

--

-- 
View this message in context: http://mono.1490590.n4.nabble.com/How-can-we-deploy-Net-winform-for-MAC-OS-tp3063154p3074803.html
Sent from the Mono - WinForms mailing list archive at Nabble.com.
_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list
Anubhava Dimri | 7 Dec 2010 09:40
Picon

Use Alternate for WIndows.Forms and Matafile in Mono in MAC OS


Hello Experts ,

I have generate the problem with Windows.Forms to with Mono in mac. And I
have generate problem to print metafile in Mono application.

Can i use any alternate to use these features.

Thanks
Anubhava Dimri

--

-- 
View this message in context: http://mono.1490590.n4.nabble.com/Use-Alternate-for-WIndows-Forms-and-Matafile-in-Mono-in-MAC-OS-tp3075982p3075982.html
Sent from the Mono - WinForms mailing list archive at Nabble.com.
_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list

Anubhava Dimri | 8 Dec 2010 08:39
Picon

How To Check Mono is installed or Not


Hello Everybody,

How can i check mono is installed or not.

Thanks
Anubhava Dimri
+91 9250168195

--

-- 
View this message in context: http://mono.1490590.n4.nabble.com/How-To-Check-Mono-is-installed-or-Not-tp3077796p3077796.html
Sent from the Mono - WinForms mailing list archive at Nabble.com.
_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list

Petit Eric | 8 Dec 2010 09:09
Picon

Re: How To Check Mono is installed or Not

Grep the result of process.start(mono

Le 8 déc. 2010 08:39, "Anubhava Dimri" <anubhava.prodata <at> gmail.com> a écrit :


Hello Everybody,


How can i check mono is installed or not.


Thanks
Anubhava Dimri
+91 9250168195

--
View this message in context: http://mono.1490590.n4.nabble.com/How-To-Check-Mono-is-installed-or-Not-tp3077796p3077796.html
Sent from the Mono - WinForms mailing list archive at Nabble.com.
_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list
_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list
Paul F. Johnson | 8 Dec 2010 11:26
Picon

Re: How To Check Mono is installed or Not

Hi,

> Grep the result of process.start(mono

That assumes you have a .NET runtime installed and that grep is on the
box in question.

Big answer is there isn't an easy one as different operating systems
install differently.

If the user has Vista/Win7 installed, they'll definately have the .NET
runtime environment installed, so process.start(...) is an option. If
they're on a linux box, it depends if mono came in rpm/deb format or is
self built. Something similar applies to a mac.

ls /usr/bin | grep "mono" 

will work for Linux and mac...

Fun...

TTFN

Paul

--

-- 
Vertraue mir, ich weiss, was ich mache...

_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list

Paul F. Johnson | 8 Dec 2010 11:26
Picon

Re: How To Check Mono is installed or Not

Hi,

> Grep the result of process.start(mono

That assumes you have a .NET runtime installed and that grep is on the
box in question.

Big answer is there isn't an easy one as different operating systems
install differently.

If the user has Vista/Win7 installed, they'll definately have the .NET
runtime environment installed, so process.start(...) is an option. If
they're on a linux box, it depends if mono came in rpm/deb format or is
self built. Something similar applies to a mac.

ls /usr/bin | grep "mono" 

will work for Linux and mac...

Fun...

TTFN

Paul

--

-- 
Vertraue mir, ich weiss, was ich mache...

_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list

Paul F. Johnson | 8 Dec 2010 11:26
Picon

Re: How To Check Mono is installed or Not

Hi,

> Grep the result of process.start(mono

That assumes you have a .NET runtime installed and that grep is on the
box in question.

Big answer is there isn't an easy one as different operating systems
install differently.

If the user has Vista/Win7 installed, they'll definately have the .NET
runtime environment installed, so process.start(...) is an option. If
they're on a linux box, it depends if mono came in rpm/deb format or is
self built. Something similar applies to a mac.

ls /usr/bin | grep "mono" 

will work for Linux and mac...

Fun...

TTFN

Paul

--

-- 
Vertraue mir, ich weiss, was ich mache...

_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list

Paul F. Johnson | 8 Dec 2010 13:18
Picon

Re: GUI Problem

Hi,

> I am running my application in Mac in which have generate GUI Problem. When
> i am Clicking on there where my hidden controls showing virtually. So please
> suggest me how to refresh my application.

Any chance of a looksee at the source? Might help to understand the
problem.

TTFN

Paul

--

-- 
Vertraue mir, ich weiss, was ich mache...

_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list <at> lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-winforms-list


Gmane