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?
that focusvisualstyle showing dotted line, try set x:null
Comments
Post a Comment