Beispiel #1
0
        private void expand_Clicked(object Sender, EventArgs e)
        {
            GalleryPopupWindow popup = new GalleryPopupWindow(this);

            popup.ShowAll();

            int x, y;

            ParentWindow.GetRootOrigin(out x, out y);
            x += Allocation.X;
            y += Allocation.Y;

            popup.GdkWindow.Move(x, y);
        }