PathIcon.Data プロパティ

定義

描画する図形を指定する Geometry を取得または設定します。 XAML で。 これは、 Move コマンドと draw コマンド構文を記述する文字列を使用して設定することもできます。

public:
 property Geometry ^ Data { Geometry ^ get(); void set(Geometry ^ value); };
Geometry Data();

void Data(Geometry value);
public Geometry Data { get; set; }
var geometry = pathIcon.data;
pathIcon.data = geometry;
Public Property Data As Geometry
<PathIcon>
  <PathIcon.Data>
    singleGeometry
  </PathIcon.Data>
</PathIcon>
- or -
<PathIcon Data="moveAndDrawCommands"/>

プロパティ値

描画する図形の説明。

この例では、PathIcon を含む AppBarButton を示します。

<!-- App bar button with path icon. -->
<AppBarButton Label="PathIcon" Click="AppBarButton_Click">
    <AppBarButton.Icon>
        <PathIcon Data="F1 M 16,12 20,2L 20,16 1,16" HorizontalAlignment="Center"/>
    </AppBarButton.Icon>
</AppBarButton>

適用対象

こちらもご覧ください