■ FloatingContainer 클래스를 사용하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
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); |