Am I using BeginSheet right? (MonoMac)

937 Views Asked by At

I have a feeling that I've either stumbled upon a bug (unlikely) or that I'm just using this function wrong (probably). I'm trying to make a sheet appear on my MainWindow. For some reason though, the sheet window pops up as a regular window without a toolbar and is in no way connected to my MainWindow at all.

Now I'm pretty new to cocoa and MonoMac so you'll have to forgive me, anyways, heres the code:

        TvShowSheetController sheet = new TvShowSheetController ();
        NSApplication.SharedApplication.BeginSheet (sheet.Window, Window);

What am I doing wrong here?

2

There are 2 best solutions below

0
On BEST ANSWER

Aha! Setting my sheet's window property "Visible at Launch" to false solved my problem :)

3
On

Are you certain that Window is the window you wish to attach the sheet to?

An example from my code using an NSAlert:

alert = new NSAlert ();

alert.AddButton ("OK");
alert.MessageText = "Message";
alert.InformativeText = "Informative.";

alert.BeginSheet (Window, delegate {
    alert.Dispose ();
    alert = null;
});