欢迎来到传世资源网!
加载中...
正在加载,请耐心等待...
本站为收藏、学习站,如有侵权,请联系管理员删除!

C# 创建activeX 例子源码(要求客户端得有.net framework)

介绍 评论 失效链接反馈

using System;using System.Reflection;using System.Runtime.InteropServices;using System.Text;using System.Threading;using System.Windows.Forms;using Microsoft.Win32;namespace Kosmala.Michal.ActiveXTest{/// <summary>/// Summary description for Class1./// </summary>[ProgId("Dendrite.WebForce.MMP.Web.OurActiveX")][ClassInterface(ClassInterfaceType.AutoDual), ComSourceInterfaces(typeof(ControlEvents))] //Implementing interface that will be visible from JS[Guid("121C3E0E-DC6E-45dc-952B-A6617F0FAA32")][ComVisible(true)]public class ActiveXObject{private string myParam = "Empty"; public ActiveXObject(){}public event ControlEventHandler OnClose;/// <summary>/// Opens application. Called from JS/// </summary>[ComVisible(true)]public void Open(){//TODO: Replace the try catch in aspx with try catch below. The problem is that js OnClose does not register.try{MessageBox.Show(myParam); //Show param that was passed from JSThread.Sleep(2000); //Wait a little before closing. This is just to show the gap between calling OnClose event.Close(); //Close application}catch (Exception e){//ExceptionHandling.AppException(e);throw e;}}/// <summary>/// Parameter visible from JS/// </summary>[ComVisible(true)]public string MyParam{get{return myParam;}set{myParam = value;}}[ComVisible(true)]public void Close(){if(OnClose != null){OnClose("http://otherwebsite.com"); //Calling event that will be catched in JS}else{MessageBox.Show("No Event Attached"); //If no events are attached send message.}}///<summary>///Register the class as acontrolandsetit's CodeBase entry///</summary>///<param name="key">The registry key of the control</param>[ComRegisterFunction()]public static void RegisterClass ( string key ){// Strip off HKEY_CLASSES_ROOT\ from the passed key as I don't need itStringBuildersb = new StringBuilder ( key ) ;sb.Replace(@"HKEY_CLASSES_ROOT\","") ;// Open the CLSID\{guid} key for write accessRegistryKey k= Registry.ClassesRoot.OpenSubKey(sb.ToString(),true);// And createthe'Control' key -this allowsit to show up in// the ActiveX control containerRegistryKey ctrl = k.CreateSubKey( "Control") ;ctrl.Close ( ) ;// Next create the CodeBase entry- needed ifnotstring named and GACced.RegistryKey inprocServer32 = k.OpenSubKey( "InprocServer32" , true );inprocServer32.SetValue ("CodeBase" , Assembly.GetExecutingAssembly().CodeBase );inprocServer32.Close ( ) ;// Finally close the mainkeyk.Close () ;MessageBox.Show("Registered");}///<summary>///Called to unregister the control///</summary>///<param name="key">Tke registry key</param>[ComUnregisterFunction()]public static void UnregisterClass ( stringkey){StringBuildersb = new StringBuilder ( key ) ;sb.Replace(@"HKEY_CLASSES_ROOT\","") ;// OpenHKCR\CLSID\{guid} for writeaccessRegistryKeyk =Registry.ClassesRoot.OpenSubKey(sb.ToString(),true);// Delete the 'Control'key, but don't throw anexception if itdoes not existk.DeleteSubKey ( "Control" , false ) ;// Nextopen upInprocServer32//RegistryKeyinprocServer32 = k.OpenSubKey ("InprocServer32" , true) ;// And delete the CodeBase key,again not throwing if missingk.DeleteSubKey ( "CodeBase", false) ;// Finally close the main keyk.Close( );MessageBox.Show("UnRegistered");}}/// <summary>/// Event handler for events that will be visible from JavaScript/// </summary>public delegate void ControlEventHandler(string redirectUrl); /// <summary>/// This interface shows events to javascript/// </summary>[Guid("68BD4E0D-D7BC-4cf6-BEB7-CAB950161E79")][InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]public interface ControlEvents{//Add a DispIdAttribute to any members in the source interface to specify the COM DispId.[DispId(0x60020001)]void OnClose(string redirectUrl); //This method will be visible from JS}}

下载声明:

本站资源均有第三方用户自行上传分享推荐,非本站自制,仅供玩家做交流学习之用!切勿用于商业用途!游戏作品版权归原作者享有,如有版权问题,请附带版权证明至邮件,本平台将应您的要求删除。
相关推荐:

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复