次の方法で共有


ScalingPolicy.IdealSizes プロパティ

リボンのサイズに基づいて、推奨される SizeDefinition テンプレートのスケーリング仕様のコンテナーを表します。

使用法

<ScalingPolicy.IdealSizes>
  child elements
</ScalingPolicy.IdealSizes>

属性

属性はありません。

子要素

要素 説明
スケール
1 回以上発生する可能性がある

親要素

要素
ScalingPolicy

解説

省略可能。

ScalingPolicy ごとに、最大で 1 回発生する可能性があります。

ScalingPolicy.IdealSizes が定義されている場合は、Tab 要素内の各 Group 要素の Scale エントリが存在する必要があります。

ScalingPolicy.IdealSizes は、コントロールのグループに推奨される SizeDefinition レイアウトです。

次の例では、リボン SizeDefinition テンプレートのアダプティブ レイアウト機能を使用して、グループ内のコントロールの外観をカスタマイズする方法を示します。

この例の ScalingPolicy マニフェストでは、[ホーム] タブの 4 つのコントロール グループごとに ScalingPolicy.IdealSizesSizeDefinition の基本設定を指定します。さらに、Scale 要素は、各グループの縮小動作に影響を与えるために、降順のサイズ順に指定されます。

<Tab CommandName="Home">
  <Tab.ScalingPolicy>
    <ScalingPolicy>
      <ScalingPolicy.IdealSizes>
        <Scale Group="GroupClipboard" Size="Medium"/>
        <Scale Group="GroupView" Size="Large"/>
        <Scale Group="GroupFont" Size="Large"/>
        <Scale Group="GroupParagraph" Size="Large"/>
      </ScalingPolicy.IdealSizes>
      <Scale Group="GroupClipboard" Size="Small"/>
      <Scale Group="GroupClipboard" Size="Popup"/>
      <Scale Group="GroupFont" Size="Medium"/>
      <Scale Group="GroupParagraph" Size="Medium"/>
      <!-- 
        GroupView group is associated with the OneButton SizeDefinition.
        Since this template is constrained to one size (Large) there
        is no need to declare further scaling preferences.
      -->
    </ScalingPolicy>
  </Tab.ScalingPolicy>

  <Group CommandName="GroupClipboard" SizeDefinition="FourButtons">
    <Button CommandName="Paste"/>
    <Button CommandName="Cut"/>
    <Button CommandName="Copy"/>
    <Button CommandName="SelectAll"/>
  </Group>

  <Group CommandName="GroupFont"  ApplicationModes="1">
    <FontControl CommandName="Font" FontType="FontWithColor" />
  </Group>

  <Group CommandName="GroupParagraph"  ApplicationModes="1" SizeDefinition="ButtonGroups">
    <ControlGroup>
      <ControlGroup>
        <ToggleButton CommandName="Numbered" />
        <ToggleButton CommandName="Bulleted" />
      </ControlGroup>
    </ControlGroup>
    <ControlGroup>
      <ControlGroup>
        <ToggleButton CommandName="LeftJustify" />
        <ToggleButton CommandName="CenterJustify" />
        <ToggleButton CommandName="RightJustify" />
      </ControlGroup>
      <ControlGroup/>
      <ControlGroup>
        <Button CommandName="Outdent" />
        <Button CommandName="Indent" />
      </ControlGroup>
    </ControlGroup>
  </Group>

  <Group CommandName="GroupView" SizeDefinition="OneButton" >
    <ToggleButton CommandName="ViewSource"/>
  </Group>

</Tab>

要件

要件
サポートされている最小のクライアント
Windows 7 [デスクトップ アプリのみ]
サポートされている最小のサーバー
Windows Server 2008 R2 [デスクトップ アプリのみ]

関連項目

サイズ定義とスケーリング ポリシーを使用したリボンのカスタマイズ