■ WPF 레이아웃의 마진과 패딩은 Windows Forms의 마진과 패딩과 유사하다. WindowsFormsHost 엘리먼트에서 Margin 및 Padding 속성을 설정하기만 하면 된다.
▶ MainWindow.xaml
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 35 36 37 38 39 40 41 42 43 44 45 46 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:winform="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms" Width="800" Height="600" Title="TestProject" FontFamily="나눔고딕코딩" FontSize="16"> <Grid Margin="10" ShowGridLines="true"> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition /> <RowDefinition /> <RowDefinition /> <RowDefinition /> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition /> <ColumnDefinition /> <ColumnDefinition /> </Grid.ColumnDefinitions> <Canvas Grid.Row="1" Grid.Column="1"> <WindowsFormsHost Margin="20 20 0 0" Background="Yellow"> <winform:Button FlatStyle="Flat" Text="Windows Forms control with margin" /> </WindowsFormsHost> </Canvas> <Canvas Grid.Row="3" Grid.Column="1"> <WindowsFormsHost Padding="0 20 0 0" Background="Yellow"> <winform:Button FlatStyle="Flat" Text="Windows Forms control with padding" /> </WindowsFormsHost> </Canvas> </Grid> </Window> |