试图用C#创建数学输入面板

时间:2009-10-26 06:37:07

标签: c# c++ dll windows-7 dllimport

如何在C#中创建数学输入面板?

我试图将它放入dll并调用它,但它会立即关闭。

#include <stdafx.h>
#include <atlbase.h>
#include "micaut.h"
#include "micaut_i.c"

extern "C" __declspec(dllexport) int run()
{
   CComPtr<IMathInputControl> g_spMIC; // Math Input Control
   HRESULT hr = CoInitialize(NULL);
   hr = g_spMIC.CoCreateInstance(CLSID_MathInputControl);
   hr = g_spMIC->EnableExtendedButtons(VARIANT_TRUE);
   hr = g_spMIC->Show();

   return hr;
}

我在C#中调用dll函数,面板弹出但立即消失。有什么建议吗?

1 个答案:

答案 0 :(得分:8)

在C#项目中,添加对COM库micautLib的引用。然后您可以使用以下代码(在C#中):

MathInputControl ctrl = new MathInputControlClass();
ctrl.EnableExtendedButtons(true);
ctrl.Show();

我不确定这是不是你应该怎么做,但这似乎干得很顺利(完整的程序)。

using System;
using System.Windows.Forms;
using micautLib;

namespace MathInputPanel
{
    static class Program
    {
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            MathInputControl ctrl = new MathInputControlClass();
            ctrl.EnableExtendedButtons(true);
            ctrl.Show();
            ctrl.Close += () => Application.ExitThread();
            Application.Run();
        }
    }
}