2017-12-29 19 views
0

私はインクツールバーを作成し、初期コントロールはすべてペン以外のものです。 消しゴムボタンの背景を透明に設定できますが、ルーラーボタンに適用できます。 これはインクツールバーのバグですか?InkToolbarを使用してInkToolbarRulerButtonの背景を透明に設定できません

<InkToolbar Background="Transparent" InitialControls="AllExceptPens" TargetInkCanvas="{x:Bind inkCanvas}"> 
     <InkToolbarEraserButton Background="Transparent"/> 
     <InkToolbarRulerButton Background="Transparent"/> 
</InkToolbar> 

enter image description here

答えて

1

ルールボタンは、実際にビジュアルツリー、ないInkToolbarRulerButtonInkToolbarStencilButtonです。したがって、次のようにコードスニペットを更新すると機能します。

<InkToolbar 
    Background="Transparent" 
    InitialControls="AllExceptPens" 
    <InkToolbarEraserButton Background="Red" /> 
    <!--<InkToolbarRulerButton Background="Red" Foreground="Blue" />--> 
    <InkToolbarStencilButton Background="Red"></InkToolbarStencilButton> 
</InkToolbar> 
関連する問題