Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If a RadioButton is in the InChecked state, then the button has a black toggle. How can I change that so that is is white instead of black?

share|improve this question

2 Answers

up vote 6 down vote accepted

You will probably have to re-template your radiobutton control either by editing the default template found here, or by using Blend (if you have it available). Blend will likely be a lot easier if you're familiar with it.

share|improve this answer
namespace WpfApplication1
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();

        }

        private void button1_Click(object sender, RoutedEventArgs e)
        {
            radioButton1.IsChecked = false;
        }
    }
}
share|improve this answer
4  
This is not was the question is asking... – Femaref Jan 7 '11 at 14:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.