Posted: Fri Mar 17, 2006 12:41 am Post subject: Changing themes not chainging main window theme (help).
I'm programming a gtk app that I want to be themeable. But when I set the theme it doesn't change the main app bar. So everything within the app looks nice, but not the title bar.
My C# (I'm using gtk-sharp) is pretty simple
Code: (Plaintext)
1 2 3 4 5 6 7
Gtk.Rc.AddDefaultFile(".\\Yattacier3\\gtk-2.0\\gtkrc");
Application.Init();
Window window = new Window("helloworld");
window.ShowAll();
Application.Run();
Any ideas on why this doesn't set the title bar? I'm running windows XP. Any help would be greatly appreciated.