c# – 如何将所有者窗口传递给Show()方法重载?

前端之家收集整理的这篇文章主要介绍了c# – 如何将所有者窗口传递给Show()方法重载?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Excel添加,在用户单击功能区栏上的按钮后打开一个winform.此按钮需要是非模态的,以便用户仍然可以与父窗口进行交互,但它也必须始终保持在父窗口的顶部.为了实现这一点,我试图将父窗口作为参数传递给Show()方法.这是我的代码

Ribbon1.cs

private void button2_Click(object sender,RibbonControlEventArgs e)
    {
        RangeSelectForm newForm = new RangeSelectForm();

        newForm.Show(this);
    }

这段代码的问题是“this”这个词引用了ribbon类,而不是父窗口.我也试过传入Globals.ThisAddIn.Application.Windows.Parent.这导致运行时错误“’System.Windows.Forms.Form.Show(System.Windows.Forms.IWin32Window)’的最佳重载方法匹配’具有一些无效参数”.将父窗口传递给Show()的正确方法是什么?

如果它是相关的,这是一个使用C#在.NET 4.0上编写的Office 2010应用程序.

编辑—基于Slaks答案

using Excel = Microsoft.Office.Interop.Excel;

...

        class ArbitraryWindow : IWin32Window
        {
            public ArbitraryWindow(IntPtr handle) { Handle = handle; }
            public IntPtr Handle { get; private set; }
        }

        private void button2_Click(object sender,RibbonControlEventArgs e)
        {
            RangeSelectForm newForm = new RangeSelectForm();
            Excel.Application instance = (Excel.Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Excel.Application");
            newForm.Show(new ArbitraryWindow(instance.Hwnd));
        }

解决方法

您需要创建一个实现IWin32Window的类并返回Excel的Application.Hwnd属性.

例如:

class ArbitraryWindow : IWin32Window {
    public ArbitraryWindow(IntPtr handle) { Handle = handle; }
    public IntPtr Handle { get; private set; }
}

newForm.Show(new ArbitraryWindow(new IntPtr(Something.Application.Hwnd)));
原文链接:https://www.f2er.com/csharp/97492.html

猜你在找的C#相关文章