첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
------------------------------------------------------------------------------------------------------------------------------------------------------
728x90
728x170
using System.Windows;

using DevExpress.Xpf.Core;

...

Window window;

...

GridControl gridControl = new GridControl();

gridControl.HorizontalAlignment = HorizontalAlignment.Stretch;
gridControl.VerticalAlignment   = VerticalAlignment.Stretch;

...

FloatingContainer floatingContainer = FloatingWindowContainer.ShowDialog
(
    gridControl,
    window,
    new Size(500, 300),
    new FloatingContainerParameters()
    {
        AllowSizing    = true,
        CloseOnEscape  = true,
        Title          = "Popup Form",
        ClosedDelegate = null
    }
);

window.AddLogicalChild(floatingContainer);
728x90
그리드형(광고전용)
Posted by icodebroker
,