I recently started to code a c# application using Gtk# and Mono.Cairo.
I created my window, then assigned the onExpose method to the Expose event. here it is :
void OnExpose(object sender, ExposeEventArgs args)
{
DrawingArea area = (DrawingArea) sender;
Cairo.Context cr = Gdk.CairoHelper.Create(area.GdkWindow);
cr.LineWidth = 9;
cr.SetSourceRGB(0.7, 0.2, 0.0);
int width, height;
width = Allocation.Width;
height = Allocation.Height;
cr.Translate(width/2, height/2);
cr.Arc(0, 0, (width < height ? width : height) / 2 - 10, 0, 2*Math.PI);
cr.StrokePreserve();
cr.SetSourceRGB(0.3, 0.4, 0.6);
cr.Fill();
((IDisposable) cr.Target).Dispose();
((IDisposable) cr).Dispose();
}
Now this code compiles perfectly (using as references gtk-sharp.dll, gdk-sharp.dll, and Mono.Cairo.dll), and runs as well as it compiles on linux. The problem is when I try to run the program on Windows (yes, I want it to run on both), it just crashes, saying that the Cairo.Context Gdk.CairoHelper.Create(GtK.Drawable) method that I used on line 4 in the above code was not found... what exactly am I missing here?