C#winform程序执行C++代码

步骤

  1. 新建C++动态库
  2. 动态库程序的编写
  3. 生成dll文件
  4. 新建C#winform项目
  5. 添加并引用C++动态库实现对C++代码的调用

新建C++动态库

C#winform程序执行C++代码_第1张图片
C#winform程序执行C++代码_第2张图片
创建过程需记住项目文件的位置 方便理解文章
我的位置是
D:\develop_files\c#_windorms_for_vs_file\project_file

然后在解决方案窗口中添加一个头文件
C#winform程序执行C++代码_第3张图片
C#winform程序执行C++代码_第4张图片

C#winform程序执行C++代码_第5张图片

动态库程序的编写

刚刚新建的头文件的代码

#pragma once

//宏定义 Api相当于占位符 代表后面的 _declspec(dllexport) _stdcall
#define Api _declspec(dllexport) _stdcall

extern "C" int Api qiuhe(int a, int b);

C#winform程序执行C++代码_第6张图片

Dll_for_opencv.cpp文件的代码

// Dll_for_opencv.cpp : 定义 DLL 应用程序的导出函数。
//

#include "stdafx.h"

//添加刚新建的头文件
#include "Dll_for_opencv.h"
//定义C#程序需要执行的函数 例如下面计算两个数的和
int Api qiuhe(int a, int b) 
{
	return a + b;
}

C#winform程序执行C++代码_第7张图片

生成dll文件

右击项目 选中生成
C#winform程序执行C++代码_第8张图片
生成以后 找到项目文件的路径下面的dll文件
我都位置是
D:\develop_files\c#_windorms_for_vs_file\project_file\Dll_for_opencv\Debug
C#winform程序执行C++代码_第9张图片

新建C#winform项目

C#winform程序执行C++代码_第10张图片
选择窗体应用
C#winform程序执行C++代码_第11张图片
窗口创建一个button和一个label
C#winform程序执行C++代码_第12张图片

添加并引用C++动态库实现对C++代码的调用

C#程序效果是
当点击按钮button的时候将两个数值输入到c++代码的qiuhe函数中进行计算 然后将结果输出并展示在label的上用text属性来展示

引用动态库 代码

        //添加路径 引用
        [DllImport(@"D:\develop_files\c#_windorms_for_vs_file\project_file\Dll_for_opencv\Debug\Dll_for_opencv.dll")]
        public extern static int qiuhe(int a, int b);

添加button的点击事件 代码

        private void button1_Click(object sender, EventArgs e)
        {
            int a = 3;
            int b = 7;
            int c = qiuhe(a, b);
            label1.Text = "结果是" + c;
        }

C#程序的所有代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

using System.Runtime.InteropServices;

namespace text_Dll_for_opencv
{
    public partial class Form1 : Form
    {
        //添加路径 引用
        [DllImport(@"D:\develop_files\c#_windorms_for_vs_file\project_file\Dll_for_opencv\Debug\Dll_for_opencv.dll")]
        public extern static int qiuhe(int a, int b);

        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            int a = 3;
            int b = 7;
            int c = qiuhe(a, b);
            label1.Text = "结果是" + c;
        }
    }
}

注意 为button添加点击事件不然 无法在点击按钮的时候 执行button1_Click函数

你可能感兴趣的:(c#,c++,winform,dll)