1

我想在 windows phone 8 中设计示例表单,如下图所示:

在此处输入图像描述

下面是 hello world 示例的代码

// Include header files for S3E (core system) and IwGx (rendering) modules
#include "s3e.h"
#include "IwGx.h"

// Standard C-style entry point. This can take args if required.
int main()
{
    // Initialise the IwGx drawing module
    IwGxInit();

    // Set the background colour to (opaque) blue
    IwGxSetColClear(0, 0, 0xff, 0xff);

    // Loop forever, until the user or the OS performs some action to quit the app
    while(!s3eDeviceCheckQuitRequest()
          && !(s3eKeyboardGetState(s3eKeyEsc) & S3E_KEY_STATE_DOWN)
          && !(s3eKeyboardGetState(s3eKeyAbsBSK) & S3E_KEY_STATE_DOWN)
          )
    {
        // Clear the surface
        IwGxClear();

        // Use the built-in font to display a string at coordinate (120, 150)
        IwGxPrintString(120, 150, "Hello, World!");

        // Standard EGL-style flush of drawing to the surface
        IwGxFlush();

        // Standard EGL-style flipping of double-buffers
        IwGxSwapBuffers();

        // Sleep for 0ms to allow the OS to process events etc.
        s3eDeviceYield(0);
    }

    // Shut down the IwGx drawing module
    IwGxTerminate();

    // Return
    return 0;
}

我尝试了很多关于如何创建按钮和文本框并使用c++marmalade sdk 上的代码为按钮添加侦听器的搜索,但没有找到任何帮助我的人将不胜感激。

4

1 回答 1

2

您需要使用 IwUI api。查看 marmalade SDK 附带的示例或使用启动板。有一些很好的注释示例演示了 IwUI 的使用,如果您想要具有原生外观的控件,您也可以尝试 IwNUI。IwNUI 模块由于一些 bug 尚未添加到 Windows 8 平台,但很快就会添加。

于 2013-07-11T20:41:04.267 回答