1

を呼び出してウィンドウのサイズを変更できないようにしようとしていますが、そうすると、myWindow.Resizable = false;指定したデフォルトのサイズを維持するのではなく、ウィンドウの右端と下がボタンにスナップします。何を与える?

using System;
using Gtk;

class WindowTester
{
    static void Main ()
    {

        Application.Init ();
        Window myWindow = new Window ("This is a window");
        myWindow.DeleteEvent += OnDelete;
        myWindow.Resizable = false;    
        myWindow.SetDefaultSize(600, 400);

        //Put a button in the Window
        Button button = new Button ("Click");
        button.SetSizeRequest(75,30);
        Fixed container = new Fixed();
        container.Put(button, 500, 350);

        myWindow.Add (container);
        myWindow.ShowAll ();
        Application.Run ();
    }

    static void OnDelete (object o, DeleteEventArgs e)
    {
        Application.Quit ();
    }   
}
4

1 に答える 1