共用方式為


面板定義檔範例 (裝置)

更新:2007 年 11 月

下列程式碼是使用直向格式之 Pocket PC 2003 面板的面板定義檔 PocketPC_2003_Skin.xml。根據預設,Visual Studio (Express 版除外) 會將這個和其他面板檔案安裝在 drive:\Program Files\Microsoft Visual Studio 9.0\SmartDevices\Skins。

您可以針對 [裝置模擬器] 和 Visual Studio 設計工具使用相同的面板檔案。如需詳細資訊,請參閱面板定義檔詳細資料 (裝置)

注意事項:

Windows Mobile 5 和 6 SDK 都安裝在 Visual Studio 資料夾的外部,例如,drive:\Program Files\Windows Mobile 5.0 SDK R2 和 drive:\Program Files\Windows Mobile 6 SDK。

程式碼

<?xml version="1.0" encoding="UTF-8" ?>
<skin>
    <view
        titleBar ="Pocket PC 2003 Second Edition"
        displayPosX="51"
        displayPosY="47"
        displayWidth="240"
        displayHeight="320"
        displayDepth="16"
        mappingImage="PocketPC_2003_Mask.png"
        normalImage="PocketPC_2003_Up.png"
        downImage= "PocketPC_2003_Down.png">
        <button
            toolTip="Power"
            onPressAndHold="0x75"
            mappingColor="0xED145B"
        />
        <button   
            toolTip="Record"
            onPressAndHold="0x44" 
            mappingColor="0xF5989D"
        />      
        <button
            toolTip="Rocker Up"
            onPressAndHold="0x48"
            mappingColor="0x0072BC"
            KeyEvent="Up"
        />   
        <button
            toolTip="Rocker Down"
            onPressAndHold="0x50"
            mappingColor="0x605CA8"
            KeyEvent="Down"
        />
        <button
            toolTip="Soft Key 1"
            onClick="DOWN:0x5b 0x70 UP:0x5b"
            mappingColor="0xF26C4F"
        />   
        <button
            toolTip="Soft Key 2"
            onClick="DOWN:0x5b 0x71 UP:0x5b"
            mappingColor="0xF68E56"
        />
        <button
            toolTip="Soft Key 3"
            onClick="DOWN:0x5b 0x72 UP:0x5b"
            mappingColor="0xFBAF5D"
        />   
        <button
            toolTip="Soft Key 4"
            onClick="DOWN:0x5b 0x73 UP:0x5b"
            mappingColor="0xF7941D"
        />
        <button
            toolTip="Up"
            onPressAndHold="0x48"
            mappingColor="0x39B54A"
            KeyEvent="Up"
        />
        <button
            toolTip="Down"
            onPressAndHold="0x50"
            mappingColor="0x009900"
            KeyEvent="Down"
        />
        <button
            toolTip="Left"
            onPressAndHold="0x4B"
            mappingColor="0x66CC66"
            KeyEvent="Left"
        />
        <button
            toolTip="Right"
            onPressAndHold="0x4D"
            mappingColor="0x00CC00"
            KeyEvent="Right"
        />
        <button
            toolTip="Enter"
            onClick="0x1C"
            mappingColor="0x006600"
            KeyEvent="Return"
        />         
    </view>
</skin>

請參閱

其他資源

自訂面板 (裝置)