在WPF中調用Python方法,可以通過以下幾種方式:
subprocess
模塊,通過調用Python解釋器執行Python腳本。示例代碼如下:using System.Diagnostics;
public void CallPythonScript()
{
ProcessStartInfo start = new ProcessStartInfo();
start.FileName = "python"; // 設置Python解釋器的路徑
start.Arguments = "script.py"; // 設置要執行的Python腳本的路徑
start.UseShellExecute = false;
start.RedirectStandardOutput = true;
using (Process process = Process.Start(start))
{
using (StreamReader reader = process.StandardOutput)
{
string result = reader.ReadToEnd();
// 處理Python腳本的輸出結果
}
}
}
using IronPython.Hosting;
public void CallPythonScript()
{
var engine = Python.CreateEngine();
var scope = engine.CreateScope();
var source = engine.CreateScriptSourceFromFile("script.py"); // 設置要執行的Python腳本的路徑
source.Execute(scope);
// 獲取Python腳本中的方法并調用
var method = scope.GetVariable("method_name"); // 設置Python腳本中的方法名
method.Invoke();
}
using Python.Runtime;
public void CallPythonScript()
{
PythonEngine.Initialize();
dynamic module = Py.Import("script"); // 設置要導入的Python模塊名
dynamic method = module.method_name; // 設置Python模塊中的方法名
method.Invoke();
PythonEngine.Shutdown();
}
注意:以上示例代碼僅供參考,實際使用時需要根據具體的情況進行調整。