[Mono-osx] MonoDevelop and GTK

Michael Hutchinson m.j.hutchinson at gmail.com
Mon May 3 19:32:17 EDT 2010


On Sat, May 1, 2010 at 6:26 PM, bmahf <bmahf at hotmail.com> wrote:
>
> Hey Francisco, thanks for the reply.  I checked the MonoDevelop build output
> and it is the following:
...
> "/res:/Users/bruce/Projects/Mono/FirstGladeProject/FirstGladeProject/gui.glade,FirstGladeProject.gui.glade"

Your glade file is being embedded as a resource, but with the resource
ID FirstGladeProject.gui.glade.

You can refer to it with this ID, e.g.
var gxml = new Glade.XML (null, "FirstGladeProject.gui.glade", "window1", null);
or change it with the "resource ID" in the properties pad.

This is the "visual studio style" resource ID, constructed from the
directory names and the filename. You can change default IDs to "MD
style" (just the filename)  using ".NET naming" policies in solution
options. The "default policies" dialog defines the polices that are
applied to new solutions.

-- 
Michael Hutchinson
http://mjhutchinson.com


More information about the Mono-osx mailing list