# C1.Win.Input.C1RadioButton.UncheckedIcon

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_Win_Input_C1RadioButton_UncheckedIcon_" data-uid="C1.Win.Input.C1RadioButton.UncheckedIcon*">UncheckedIcon Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_Win_Input_C1RadioButton_UncheckedIcon_" data-uid="C1.Win.Input.C1RadioButton.UncheckedIcon*"></a>
<h4 id="C1_Win_Input_C1RadioButton_UncheckedIcon" data-uid="C1.Win.Input.C1RadioButton.UncheckedIcon">UncheckedIcon</h4>
<div class="markdown level1 summary"><p>Gets or sets a custom <a class="xref" href="../C1.Win.10/C1.Framework.C1Icon.html">C1Icon</a> for the unchecked state of the radio button.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">[Browsable(false)]
public C1Icon UncheckedIcon { get; set; }</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">&lt;Browsable(False)&gt;
Public Property UncheckedIcon As C1Icon</code></pre>
</div>
<h5 id="C1_Win_Input_C1RadioButton_UncheckedIcon_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>Use the FrontIcon key for the front icon, this key applies the ForeColor to this icon.
Use the BorderIcon key for the border icon, this key applies the BorderColor to this icon.
Use the BackIcon key for the back icon, this key applies the BackColor to this icon.</p>
</div>
<h5 id="C1_Win_Input_C1RadioButton_UncheckedIcon_examples">Examples</h5>
<pre><code class="lang-csharp">public static C1Icon UncheckedRadio
{
    get
    {
        var mainIcon = new C1CompositeIcon();
        var borderIcon = new C1PathIcon
        {
            Data = "M 0 5 a 5,5 0 1,0 10,0a 5,5 0 1,0 -10,0 Z",
            ViewBox = new Rectangle(0, 0, 11, 11),
            Key = "BorderIcon"
        };
        var backIcon = new C1PathIcon
        {
            Data = "M 0.5,5 a 4.5,4.5 0 1,0 9,0a 4.5,4.5 0 1,0 -9,0 Z",
            ViewBox = new Rectangle(0, 0, 11, 11),
            Key = "BackIcon"
        };
        mainIcon.Icons.Add(borderIcon);
        mainIcon.Icons.Add(backIcon);
        mainIcon.Size = new Size(20, 20);
        return mainIcon;
    }
}

    C1RadioButton.UncheckedIcon = UncheckedRadio;

    C1RadioButton.Styles.Normal.Glyph.Unchecked.Default.BackColor = Color.FromArgb(249, 249, 249);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.Default.ForeColor = Color.FromArgb(255, 255, 255);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.Default.BorderColor = Color.FromArgb(100, 100, 100);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.Hot.BackColor = Color.FromArgb(240, 240, 240);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.Hot.ForeColor = Color.FromArgb(255, 255, 255);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.Hot.BorderColor = Color.FromArgb(147, 147, 147);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.Pressed.BackColor = Color.FromArgb(231, 231, 231);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.Pressed.ForeColor = Color.FromArgb(255, 255, 255);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.Pressed.BorderColor = Color.FromArgb(200, 200, 200);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.HotPressed.BackColor = Color.FromArgb(231, 231, 231);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.HotPressed.ForeColor = Color.FromArgb(255, 255, 255);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.HotPressed.BorderColor = Color.FromArgb(200, 200, 200);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.Disabled.BackColor = Color.FromArgb(255, 255, 255);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.Disabled.ForeColor = Color.FromArgb(255, 255, 255);
    C1RadioButton.Styles.Normal.Glyph.Unchecked.Disabled.BorderColor = Color.FromArgb(200, 200, 200);</code></pre>

</div>
