環境:Win10、VS2017
一、新建WPF專案
2. WPF專案新增System.Windows.Forms和WindowsFormsIntegration引用
3. 編寫WPF窗體程式碼
3.1. 頭部新增引用
1 xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms" 2 xmlns:wfi ="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
3.2. 內容引用WinForm控制元件
1 <wfi:WindowsFormsHost Width="180" Height="20"> 2 <wf:DateTimePicker Format="Custom" CustomFormat="yyyy/MM/dd HH:mm:ss"></wf:DateTimePicker> 3 </wfi:WindowsFormsHost>
4. 執行檢視效果