Remove the button border including the 'tab event' in wpf? -


i manage remove button border using style

    <style x:key="transparentstyle" targettype="{x:type button}">         <setter property="template">             <setter.value>                 <controltemplate targettype="button">                     <border background="transparent">                         <contentpresenter/>                     </border>                 </controltemplate>             </setter.value>         </setter>     </style> 

however, how remove dotted black border appears tab key?enter image description here

that focusvisualstyle showing dotted line, try set x:null


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -