首页 > 其他分享 >WPF调用winfrom控件

WPF调用winfrom控件

时间:2023-02-02 23:13:03浏览次数:39  
标签:控件 Windows winfrom System Forms 添加 WPF

1.导包

在引用处添加System.Windows.Fotms和WindowsFormslntegration

2.xaml部分

在需要使用控件的页面添加引用

xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
xmlns:wfi ="clrnamespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
添加需要使用的winfrom控件

<wfi:WindowsFormsHost Width="180" Height="20">
   <wf:DateTimePicker Format="Custom" CustomFormat="yyyy/MM/dd HH:mm:ss"/>
</wfi:WindowsFormsHost>

 

标签:控件,Windows,winfrom,System,Forms,添加,WPF
From: https://www.cnblogs.com/lzjsky/p/17087697.html

相关文章