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:
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.
Thanks,
Jeff