Windows 8 C#调用C++编写的Windows运行时组件

简介:

Windows运行时组件是Windows 8里面通用的公共库,它可以使用C++,C#或者VB来编写,不过你的Windows 8 metro是用什么语言编写都可以调用无缝地调用Windows运行时组件。

下面通过一个C#编写的Windows 8项目来调用一个用C++编写的Windows运行时组件。

创建一个Windows运行时组件:

 

 

 

编写如下的代码:

 


 
 
  1. #include "pch.h"  
  2. #include "WinRTComponent.h"  
  3.  
  4. using namespace CppWinRTComponentDll2;  
  5.  
  6. int CalculatorSample::Add(int x, int y)  
  7. {  
  8.     return x+y;  

头文件

 


 
 
  1. #pragma once  
  2.  
  3. using namespace Windows::Foundation;  
  4.  
  5. namespace CppWinRTComponentDll2  
  6. {  
  7.  
  8.     public ref class CalculatorSample sealed  
  9.     {  
  10.     public:  
  11.         int Add(int x, int y);  
  12.  
  13.     };  

在C#编写的项目中调用Windows运行时组件的C++方法

添加Windows运行时组件

 

 

 

UI部分

 


 
 
  1. <Page 
  2.     x:Class="TestWinRTCSDemo.MainPage" 
  3.     IsTabStop="false" 
  4.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  5.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
  6.     xmlns:local="using:TestWinRTCSDemo" 
  7.     xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
  8.     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
  9.     mc:Ignorable="d"> 
  10.  
  11.     <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}"> 
  12.         <StackPanel> 
  13.             <TextBox x:Name="txtX" HorizontalAlignment="Center" Height="45" Width="258"></TextBox> 
  14.             <TextBlock   Text="+" HorizontalAlignment="Center"  Height="45" Width="258" FontSize="14" FontWeight="Bold"/> 
  15.             <TextBox x:Name="txtY" HorizontalAlignment="Center" Height="45" Width="258"></TextBox> 
  16.             <Button Content="调用WinRT方法来相加" HorizontalAlignment="Center" Click="Button_Click_1" ></Button> 
  17.             <TextBox x:Name="txtAddResult" HorizontalAlignment="Center" Height="45" Width="258"/> 
  18.         </StackPanel> 
  19.     </Grid> 
  20. </Page> 

C#代码部分

 


 
 
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.IO;  
  4. using System.Linq;  
  5. using Windows.Foundation;  
  6. using Windows.Foundation.Collections;  
  7. using Windows.UI.Xaml;  
  8. using Windows.UI.Xaml.Controls;  
  9. using Windows.UI.Xaml.Controls.Primitives;  
  10. using Windows.UI.Xaml.Data;  
  11. using Windows.UI.Xaml.Input;  
  12. using Windows.UI.Xaml.Media;  
  13. using Windows.UI.Xaml.Navigation;  
  14. using CppWinRTComponentDll2;//引入Windows运行时的空间  
  15.  
  16. namespace TestWinRTCSDemo  
  17. {  
  18.  
  19.     public sealed partial class MainPage : Page  
  20.     {  
  21.         public MainPage()  
  22.         {  
  23.             this.InitializeComponent();  
  24.         }  
  25.  
  26.         protected override void OnNavigatedTo(NavigationEventArgs e)  
  27.         {  
  28.         }  
  29.  
  30.         private void Button_Click_1(object sender, RoutedEventArgs e)  
  31.         {  
  32.             if (txtX.Text != "" && txtY.Text != "")  
  33.             {  
  34.                  CalculatorSample calcobj =  new  CalculatorSample();//直接创建Windows运行时里面的对象,很方便  
  35.                  int x = Convert.ToInt32(txtX.Text.ToString());  
  36.                  int y = Convert.ToInt32(txtY.Text.ToString());  
  37.                  txtAddResult.Text = calcobj.Add(x,y).ToString();//调用Windows运行时里面的方法  
  38.             }  
  39.         }  
  40.     }  

运行的效果

 

 

 

 


本文转自linzheng 51CTO博客,原文链接:http://blog.51cto.com/linzheng/1081671

相关文章
|
4月前
|
C++
C++ 根据程序运行的时间和cpu频率来计算在另外的cpu上运行所花的时间
C++ 根据程序运行的时间和cpu频率来计算在另外的cpu上运行所花的时间
47 0
|
3月前
|
物联网 C# C语言
物联网开发中C、C++和C#哪个更好用
在物联网(IoT)开发中,C、C++和C#各有优缺点,适用场景不同。C语言性能高、资源占用低,适合内存和计算能力有限的嵌入式系统,但开发复杂度高,易出错。C++支持面向对象编程,性能优秀,适用于复杂应用,但学习曲线陡峭,编译时间长。C#易于学习,与.NET框架结合紧密,适合快速开发Windows应用,但性能略低,平台支持有限。选择语言需根据具体项目需求、复杂性和团队技术栈综合考虑。
|
2月前
|
缓存 Linux 编译器
【C++】CentOS环境搭建-安装log4cplus日志组件包及报错解决方案
通过上述步骤,您应该能够在CentOS环境中成功安装并使用log4cplus日志组件。面对任何安装或使用过程中出现的问题,仔细检查错误信息,对照提供的解决方案进行调整,通常都能找到合适的解决之道。log4cplus的强大功能将为您的项目提供灵活、高效的日志管理方案,助力软件开发与维护。
59 0
|
4月前
|
C++
C++ Qt开发:QUdpSocket网络通信组件
QUdpSocket是Qt网络编程中一个非常有用的组件,它提供了在UDP协议下进行数据发送和接收的能力。通过简单的方法和信号,可以轻松实现基于UDP的网络通信。不过,需要注意的是,UDP协议本身不保证数据的可靠传输,因此在使用QUdpSocket时,可能需要在应用层实现一些机制来保证数据的完整性和顺序,或者选择在适用的场景下使用UDP协议。
164 2
|
4月前
|
XML 监控 C#
Windows平台C#版RTSP转RTMP直播推送定制版
前几年我们发布了C++版的多路RTMP/RTSP转RTMP转发官方定制版。在秉承低延迟、灵活稳定、低资源占用的前提下,客户无需关注开发细节,只需图形化配置转发等各类参数,实现产品快速上线目的。如监控类摄像机、NVR等,通过厂商说明或Onvif工具,获取拉流的RTSP地址,图形化配置,完成拉流转发等操作,轻松实现标准RTMP服务器对接。
|
4月前
|
C语言 C++
vscode——如何在vscode中运行C/C++
vscode——如何在vscode中运行C/C++
56 1
|
4月前
|
开发者 iOS开发 C#
Uno Platform 入门超详细指南:从零开始教你打造兼容 Web、Windows、iOS 和 Android 的跨平台应用,轻松掌握 XAML 与 C# 开发技巧,快速上手示例代码助你迈出第一步
【8月更文挑战第31天】Uno Platform 是一个基于 Microsoft .NET 的开源框架,支持使用 C# 和 XAML 构建跨平台应用,适用于 Web(WebAssembly)、Windows、Linux、macOS、iOS 和 Android。它允许开发者共享几乎全部的业务逻辑和 UI 代码,同时保持原生性能。选择 Uno Platform 可以统一开发体验,减少代码重复,降低开发成本。安装时需先配置好 Visual Studio 或 Visual Studio for Mac,并通过 NuGet 或官网下载工具包。
328 0
|
4月前
|
安全 C++ Windows
Windows下C++使用gRPC(Qt和VS,含文件包和使用方法)
Windows下C++使用gRPC(Qt和VS,含文件包和使用方法)
|
6月前
|
Java Go C#
编程语言C#、C++、Java、Python、go 选择哪个好?
我想说的是,不论选择哪种编程语言,决定选择的都是你最终的目的,做选择之前,先充分调研每一个选择项,再做选择思路就会非常清晰了。
124 3
|
6月前
|
C++
c++语言核心技术要点,《运行时类型识别RTTI》
c++语言核心技术要点,《运行时类型识别RTTI》
56 2
下一篇
无影云桌面