2015-11-06 113 views
1

我有兩個單選按鈕。我想添加一個自定義圖像而不是默認樣式。在Windows Phone應用程序中自定義單選按鈕

例如:我想顯示圖像1爲選中的單選按鈕,圖像2爲未選中的所有其他單選按鈕。

當前的單選按鈕代碼,我試過了。

<RadioButton x:Name="rbCashFee" Content="Send with Cash out fee" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" IsChecked="True" Height="59" Foreground="Black" RenderTransformOrigin="0.5,0.5" Margin="8,0" Background="{x:Null}"> 
         <RadioButton.RenderTransform> 
          <CompositeTransform/> 
         </RadioButton.RenderTransform> 
</RadioButton> 
<RadioButton x:Name="rbNCashFee" Content="Send without Cash out fee" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Height="59" Foreground="Black" Margin="8,0"> 
         <RadioButton.BorderBrush> 
          <SolidColorBrush Color="#000"/> 
         </RadioButton.BorderBrush> 
         <RadioButton.Background> 
          <SolidColorBrush Color="#fff"/> 
         </RadioButton.Background>       
</RadioButton> 

有人能幫助我做到這一點。

回答

1

,而不是試圖把它在XAML,我建議你在該頁面的cs文件做用的SelectionChanged事件,並在cs文件動態地設置您的單選按鈕的屬性。

相關問題