I am using Expression Blend.
I have a sketch button and the button’s border looks sketchy and wavy. Is there a method how to change the border to a solid line without deleting the button?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s just a style on the button. When you’re doing a Sketchflow project, the default styles are defined in the SketchStyles.xaml
ResourceDictionaryWhen you add the button to your view, there should be something along the lines ofStyle="{DynamicResource Button-Sketch}"added to the line. Just remove that and your button’s style is gone. You can create a custom style to make the button look the way you want.If you’re spending time styling your view, why are you using SketchFlow? The idea behind it is to quickly prototype your views. It’s not meant to be your final product.