共用方式為


點陣圖元素

選擇性 點陣圖 元素是用來在消息框中顯示本文左邊的點陣圖影像。

點陣圖元素定義在此 URI 的 asyncui 命名空間中:

https://schemas.microsoft.com/2003/print/asyncui/v1/request

某些語言和國家/地區可能無法使用此資源。

使用方式

<bitmap
  bitmapID = "xs:string"
  resourceDll = "xs:string"/>

屬性

屬性 類型 必要 Description
bitmapID xs:string Yes 必要屬性,指定要顯示在消息框中的位圖影像。 屬性值會指定資源 DLL 中影像的位置。 位圖影像可以是任何大小或格式;消息框會重設大小以容納它。
resourceDll xs:string No 選擇性屬性,指定資源 DLL,其中包含要在消息框中顯示的點陣圖影像。 此 DLL 應該是印表機驅動程式的相依檔案,而且必須存在於驅動程式資源資料夾中 (,例如%SYSTEMROOT%\system32\spool\drivers\w32x86\3) 。

子元素

沒有子專案。

父元素

元素 Description
messageBoxUI 選擇性專案,用來在用戶端計算機上顯示消息框。

範例

下列程式代碼範例示範如何使用 位圖 專案。

<?xml version="1.0" ?>
   <asyncPrintUIRequest xmlns="https://schemas.microsoft.com/2003/print/asyncui/v1/request">
    <v1>
      <requestOpen>
        <messageBoxUI>
          <title stringID="1234" resourceDll="IHV.dll" />
          <bitmap bitmapID="100" resourceDll="IHV.dll" />
          <body stringID="100" resourceDll="IHV.dll">
            <parameter stringID="5" />
            <parameter stringID="1002" resourceDll="IHV.dll" />
          </body>
        </messageBoxUI>
      </requestOpen>
    </v1>
  </asyncPrintUIRequest>

另請參閱

messageBoxUI