开发者

How remove border from clicked button in silverlight?

开发者 https://www.devze.com 2022-12-21 21:15 出处:网络
I have a button and image inside it in my silverlight user control. When I click to the button a border added to it.

I have a button and image inside it in my silverlight user control.

When I click to the button a border added to it.

Can I remove border from button when it is pres开发者_StackOverflow中文版sed?

Thanks.


You will need to tweak the Button template to do that. First get hold of the existing template (in Blend this where you use Edit Copy of Template) which you can get from the documentation if you only have Visual Studio. Button Styles and Templates.

Copy the entire style and place it in a resource somewhere in your UserControl or better yet in a ResourceDictionary file of its own and included in the UserControl resources using MergedDictionaries :-

NoFocusRectangleButtonStyle.xaml:-

<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Style x:Key="NoFocusRectangleButtonStyle" TargetType="Button">
        <!-- copy of style contents from documentation -->
    </Style>
</ResourceDictionary>

In your UserControl:-

<UserControl .... >
   <UserControl.Resources>
     <ResourceDictionary>
       <ResourceDictionary.MergedDictionaries>
          <ResourceDictionary Source="NoFocusRectangleButtonStyle.xaml" />
        </ResourceDictionary.MergedDictionaries>
        <!-- other local resources -->
     </ResourceDictionary>
   </UserControl.Resources>
   <Grid x:Name="LayoutRoot" ...>

     <Button Style="{StaticResource NoFocusRectangleButtonStyle}">
        <Image Source="yourimage.png" />
     </Button>

   </Grid>
</UserControl>

Now you just need to tweak the Template in the copied style to remove the Focus Rectangle. You'll find it right at the bottom of the template, delete it. Then look further up to the end of the set of VisualStateGroups, you'll see a VisualState called "Focus", delete the Storyboard it contains and you are done.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号