C# 編寫ActiveX

1. 新建 WindowFormControlLibraryui

2. 修改 項目->右鍵屬性->Application-> Assembly Information ->勾選 Make Assembly Com-Visiblespa

3. 修改 項目->右鍵屬性-> Build -> 勾選 Register for Com interop code

4. 控件cs界面, using System.Runtime.InteropServices 命名空間; 類名添加 GUID屬性orm

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;

namespace MyActiveX2
{
    [Guid("07333C44-7CFD-3C64-A540-C476FE80EEF2")]
    public partial class demo : UserControl, IObjectSafety
    { .....

 

5. 繼承IObjectSafety 接口blog

        #region IObjectSafety Members
        public void GetInterfacceSafyOptions(int riid, out int pdwSupportedOptions, out int pdwEnabledOptions)
        {
            pdwSupportedOptions = 1;
            pdwEnabledOptions = 2;
        }

        public void SetInterfaceSafetyOptions(int riid, int dwOptionsSetMask, int dwEnabledOptions)
        {
            //throw new NotImplementedException();
        }
        #endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;

namespace MyActiveX2
{

    [Guid("CB5BDC81-93C1-11CF-8F20-00805F2CD064"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    public interface IObjectSafety
    {
        void GetInterfacceSafyOptions(System.Int32 riid, out System.Int32 pdwSupportedOptions, out System.Int32 pdwEnabledOptions);
        void SetInterfaceSafetyOptions(System.Int32 riid, System.Int32 dwOptionsSetMask, System.Int32 dwEnabledOptions);
    }

}

6. 網頁引用就能夠了繼承

   <object id="obj1" classid="clsid:07333C44-7CFD-3C64-A540-C476FE80EEF2" >      
    </object>

7. 安裝程序接口

新建項目-> 安裝項目 -> Appliction Folder -> 添加 項目的主輸出,並設置Register屬性爲vsdrpCOM.io

相關文章
相關標籤/搜索