GradientBrush.MappingMode プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
グラデーション ブラシの配置座標が、出力領域に対し絶対的に配置されるか、または相対的に配置されるかを指定する BrushMappingMode 列挙を取得または設定します。
public:
property System::Windows::Media::BrushMappingMode MappingMode { System::Windows::Media::BrushMappingMode get(); void set(System::Windows::Media::BrushMappingMode value); };
public System.Windows.Media.BrushMappingMode MappingMode { get; set; }
member this.MappingMode : System.Windows.Media.BrushMappingMode with get, set
Public Property MappingMode As BrushMappingMode
プロパティ値
グラデーション ブラシの配置座標の解釈方法を指定する BrushMappingMode 値。 既定値は、RelativeToBoundingBox です。
例
次の例は、プロパティを MappingMode 使用して、グラデーションに使用 StartPoint する座標系を EndPoint 指定する方法を示しています。
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel>
<!-- Both of the rectangles below have identical gradients applied but use different
coordinate systems to specify the StartPoint and EndPoint of the gradient. -->
<Rectangle Width="200" Height="100" Margin="10">
<Rectangle.Fill>
<!-- The MappingMode property is set to "Absolute" which specifies that the coordinate
system used for the StartPoint and EndPoint properties is not relative to the
Brush output area. Values are interpreted directly in local space (in pixels). -->
<LinearGradientBrush MappingMode="Absolute"
StartPoint="0,50" EndPoint="200,50">
<GradientStop Color="Yellow" Offset="0" />
<GradientStop Color="Red" Offset="0.25" />
<GradientStop Color="Blue" Offset="0.75" />
<GradientStop Color="LimeGreen" Offset="1" />
</LinearGradientBrush>
</Rectangle.Fill>
</Rectangle>
<Rectangle Width="200" Height="100" Margin="10">
<Rectangle.Fill>
<!-- The MappingMode property is set to "RelativeToBoundingBox" (default) which
specifies the coordinate system for the StartPoint and EndPoint are relative to
the Brush output area: 0 indicates 0 percent of the output area and 1 indicates
100 percent of the output area. -->
<LinearGradientBrush StartPoint="0,0.5" EndPoint="1,0.5">
<GradientStop Color="Yellow" Offset="0" />
<GradientStop Color="Red" Offset="0.25" />
<GradientStop Color="Blue" Offset="0.75" />
<GradientStop Color="LimeGreen" Offset="1" />
</LinearGradientBrush>
</Rectangle.Fill>
</Rectangle>
</StackPanel>
</Page>
注釈
値は Absolute 、グラデーション ブラシの座標がデバイスに依存しないピクセルを使用して表されていることを示します。
依存プロパティ情報
識別子フィールド | MappingModeProperty |
メタデータのプロパティが次に設定されている true |
なし |