我正在開發window phone 7應用程序。我不熟悉window 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;
我可以看到背景圖片的按鈕控制,但它不適合通過按鈕控制所佔用的空間。我可以看到右邊的&按鈕控件底部邊框上的空白區域。這是因爲圖像不適合按鈕控制佔用的空間。我應該如何在後臺添加圖像,以便它能夠適應按鈕控件所佔用的空間。你能否給我提供任何可以解決上述問題的代碼或鏈接?
Stretch.Fill,Stretch.Uniform,Stretch.UniformToFill,Stretch.None所有這些不工作 – 2011-02-08 11:56:07