2011-12-27 73 views
1

我是windows mobile的新手。我需要爲按鈕設置背景圖片,但我只能看到設置背景顏色的選項。我如何設置背景圖像。如何在Windows Mobile窗體中設置按鈕的背景圖像?

感謝

+0

的例子看看[這裏](http://www.microsoft.com/download/en/details.aspx ?displaylang = en&id = 17697)和[this](http://msdn.microsoft.com/en-us/library/aa446518.aspx) –

回答

1

下面是你在找什麼

<Button x:Name="btnEventsS" Style="{StaticResource ButtonStyle1}" HorizontalAlignment="Left" Height="93" Width="105" BorderThickness="0" Margin="-26,-10,0,0" Visibility="Collapsed" Click="btnEventsS_Click"> 
     <Button.Background> 
       <ImageBrush ImageSource="Images/events-over.png" Stretch="None"/> 
     </Button.Background> 
    </Button> 
+0

感謝您的回覆Bhavik Goyal,但我正在開發一個Windows應用程序。你知道如何在Windows中拍攝圖像嗎? – Balu

+0

這是Windows Phone 7的代碼。將圖像添加到文件夾時,將圖像的屬性更改爲「添加資源」。 –

相關問題