我正在将我的 windows 应用程序移动到 windows8 metro 样式应用程序,我不知道如何在 windows8 metrostyle 应用程序中调用方法,我的 windows 应用程序代码是,
private void appendLog(string msg)
{
if (this.InvokeRequired)
this.Invoke(new MethodInvoker(delegate { this.appendLog(msg); }));
}
谁能说我!
提前致谢!