0

我是 WP8/c# 的新手,充斥着新信息,并且肯定遗漏了一些东西。

我有使用本机代码库的 wp8 应用程序。我如何通知 UI 有关本机代码的更改?我知道我不能将回调从 c# 函数传递到 wp8 上的本机 c++。下面的简单代码说明了我想要的:

主页 cs

namespace phoneapp
{
  public partial class MainPage : PhoneApplicationPage
  {
    testRT _testrt;
    public MainPage()
    {
      _testrt= new testRT();
    }
    private void btnTest_Click(object sender, RoutedEventArgs e)
    {
      _testrt->foo();
    }
  }
}

运行时组件 cpp

namespace rtc
{
  public ref class testRT sealed
  {
    public:
      testRT();
      void foo();
    private:
      test* _test;
  };
}
testRT::testRT()
{
  _test= new test();
}
testRT::foo()
{
  _test->foothread();
}

本机类 cpp

test::test()
{
}
test::~test()
{
}
void test::foothread()
{
  signal_UI_status("started");
  while (notfinished)
  {
    //do something
    ...
    signal_UI_results("found %i results", res);
  }
  signal_UI_status("finished");
}

在 Windows Phone 上实现这种“信号”功能的最佳方法是什么?打回来?命名管道?插座?

4

1 回答 1

0

您可以在 Windows 运行时声明回调委托并将 C# 函数传回给它。

public delegate void WinRtCallback(Platform::String^ resultString);

public ref class testRT sealed
{
public:
  testRT();
  void foo(WinRtCallback^ callback);
private:
  test* _test;
};

或者更好的是,您可以让您的 C++ 返回异步操作(通过IAsyncAction和其他异步接口),但这要先进得多。

有关这方面的更多信息,请参阅 MSDN 上的“在 C++ 中为 Windows 应用商店应用创建异步操作”,它也适用于 Windows Phone 应用。

于 2013-09-25T13:34:15.923 回答