以下是一个简单的 Python 和 C# 联合开发的实际案例,展示了如何使用 Python 编写一个脚本来与 C# 开发的 Windows 应用程序进行交互。
首先,我们需要创建一个简单的 C# Windows 应用程序。使用 Visual Studio 创建一个新的 ?Windows Forms Application? 项目,并添加一个按钮到表单上。在按钮的点击事件处理程序中,我们将弹出一个消息框。
using System;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
? ? public partial class Form1 : Form
? ? {
? ? ? ? public Form1()
? ? ? ? {
? ? ? ? ? ? InitializeComponent();
? ? ? ? }
?
? ? ? ? private void button1_Click(object sender, EventArgs e)
? ? ? ? {
? ? ? ? ? ? MessageBox.Show("Hello from C#!");
? ? ? ? }
? ? }
}
编译并运行这个 C# 应用程序,确保一切正常。
接下来,我们使用 Python 编写一个脚本来与 C# 应用程序进行交互。在 Python 脚本中,我们使用 ?subprocess? 模块来启动 C# 应用程序,并等待它的退出。
import subprocess
# 启动 C# 应用程序
process = subprocess.Popen(["C:\\path\\to\\your\\executable.exe"])
# 等待应用程序退出
process.wait()
# 检查退出码
if process.returncode == 0:
? ? print("C# 应用程序成功退出")
else:
? ? print("C# 应用程序退出时发生错误")
运行这个 Python 脚本,它将启动 C# 应用程序,并在应用程序退出后打印相应的消息。