我正在开发一个Windows Phone 7应用程序。我是Windows Phone 7应用程序的新手。在我的应用程序中,我动态创建了一个按钮控件,并将背景图像添加到按钮控件中,如下所示。
Button AlphabetButton = new Button();
AlphabetButton.Content = vAlphabet;
ImageBrush brush = new ImageBrush();
brush.ImageSource = new BitmapImage(new Uri("button_off.png", UriKind.Relative));
//brush.Stretch = Stretch.None;
AlphabetButton.Background = brush;
AlphabetButton.BorderBrush = new SolidColorBrush(Colors.Gray);
AlphabetButton.Margin = new Thickness(-12, -27, 0, 0);
AlphabetButton.Width = 80;
AlphabetButton.Height = 80;
我想删除按钮控件的边框,因为使用该边框时,图像不会按要求显示。这该怎么做?我们可以使用按钮控件的BorderThickness
属性执行此操作,还是有其他方法吗?能否请您提供我可以解决上述问题的任何代码或链接?如果我做错了什么,请指导我。
答案 0 :(得分:10)
最简单的方法是将BorderThickness设置为0,如例:
Button alphabetButton = new Button();
alphabetButton.BorderThickness = new Thickness(0.0);
另一个选项可能是将BorderBrush设置为Transparent或更改按钮的整个Style,尤其是ControlTemplate。
答案 1 :(得分:0)
我认为Button.StrokeTHickness是调整边框的正确属性。