使用WPF实现MDI窗体的方法

本文介绍如何通过C#实现将一个Window2窗口作为子窗口嵌入到Window1窗口中,具体步骤包括创建Win32Native类实现跨平台调用、设计两个XAML窗体并利用WindowInteropHelper进行句柄传递。
摘要由CSDN通过智能技术生成

第一:新建一个类(Class), 类文件名称为Win32Native.cs, 类的代码如下:

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 

namespace WpfApplication1 
{ 
    public class Win32Native 
    { 
        [System.Runtime.InteropServices.DllImport("user32.dll", EntryPoint = "SetParent")] 
        public extern static IntPtr SetParent(IntPtr childPtr, IntPtr parentPtr);  
    } 
}

第二:新建两个窗体:

        Window1.xaml

        Window2.xaml


第三:Window1.xaml.cs中添加引用 "using System.Windows.Interop;"


第四:在Window1窗体中放上一个Button1, 其事件如下:

private void button1_Click(object sender, RoutedEventArgs e) 
{ 
    Window2 w2 = new Window2(); 
    w2.Show();   

    WindowInteropHelper parentHelper = new WindowInteropHelper(this); 
    WindowInteropHelper childHelper = new WindowInteropHelper(w2);  

    Win32Native.SetParent(childHelper.Handle, parentHelper.Handle); 

    testMdiWindow.WindowState = WindowState.Maximized;
}


第五:编译功程,完毕



评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值