martedì 25 giugno 2013

[WPF] Utilizzare controlli WinForms in WPF

Per integrare nei progetti WPF dei controli WinForms ci viene in aiuto la classe WindowsFormHost di WindowsFormIntegration.dll
<Window x:Class="EsempioWPF.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="401.124" Width="792.416">
    <Grid>
        <WindowsFormsHost Margin="0">
            <xxx:TuoControlloWinForms x:Name="controlloWinForm"/>
        </WindowsFormsHost>
    </Grid>
</Window>

Nessun commento:

Posta un commento