PathIcon.Data プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
描画する図形を指定する 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>