[Gtk-sharp-list] Windows theme not applied
Stifu
stifu at free.fr
Sun Nov 30 09:32:34 EST 2008
To me, it looks like the first screenshot uses MS .NET, while the second one
uses Mono (thought I don't understand why it'd run Mono by default when
simply launching a file from the explorer). You could make sure and find out
which framework is used with a function like:
public static bool IsMono()
{
if(Type.GetType("System.MonoType", false) != null)
{
return true;
}
return false;
}
Native Windows theming will be included in Mono 2.2, due out in December...
So this should fix your problem, I think (unless it only concerns programs
that use Windows.Forms and not GTK#? I don't know, I guess someone else
could clear that up).
--
View this message in context: http://www.nabble.com/Windows-theme-not-applied-tp20758097p20758223.html
Sent from the Mono - Gtk# mailing list archive at Nabble.com.
More information about the Gtk-sharp-list
mailing list