RadioButton.cs :  » 2.6.4-mono-.net-core » System.Windows » System » Windows » Controls » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Windows 
System.Windows » System » Windows » Controls » RadioButton.cs
/* -*- Mode: C#; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
// (c) Copyright Microsoft Corporation. 
// This source is subject to the Microsoft Public License (Ms-PL).
// Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details.
// All other rights reserved. 


 
// Open Issues: 
// 1. Do we need to lock the _groupNameToElements access since Silverlight has a
//    single UI-thread?  This should be verified. 

using System;
using System.Collections.Generic; 
using System.Diagnostics;
using System.Globalization;
using System.Windows; 
using System.Windows.Controls.Primitives; 
using System.Windows.Input;
using System.Windows.Media.Animation; 
using System.Windows.Automation.Peers;
using System.Windows.Controls;
 
namespace System.Windows.Controls{
    /// <summary> 
    /// Represents a button that can be selected, but not cleared, by a user. 
    /// The IsChecked property of a RadioButton can be set by clicking it, but
    /// it can only be cleared progammatically. 
    /// </summary>
    [TemplateVisualState(Name = RadioButton.StateNormal, GroupName = RadioButton.GroupCommon)]
    [TemplateVisualState(Name = RadioButton.StateMouseOver, GroupName = RadioButton.GroupCommon)] 
    [TemplateVisualState(Name = RadioButton.StatePressed, GroupName = RadioButton.GroupCommon)]
    [TemplateVisualState(Name = RadioButton.StateDisabled, GroupName = RadioButton.GroupCommon)]
    [TemplateVisualState(Name = RadioButton.StateUnfocused, GroupName = RadioButton.GroupFocus)] 
    [TemplateVisualState(Name = RadioButton.StateFocused, GroupName = RadioButton.GroupFocus)] 
    [TemplateVisualState(Name = RadioButton.StateChecked, GroupName = RadioButton.GroupCheck)]
    [TemplateVisualState(Name = RadioButton.StateUnchecked, GroupName = RadioButton.GroupCheck)] 
    [TemplateVisualState(Name = "InvalidFocused", GroupName = "ValidationStates")]
    [TemplateVisualState(Name = "InvalidUnfocused", GroupName = "ValidationStates")]
    [TemplateVisualState(Name = "Valid", GroupName = "ValidationStates")]
    public partial class RadioButton : ToggleButton
    {
        /// <summary> 
        /// Mapping of group names to the elements in those groups.
        /// </summary>
        private static Dictionary<string, List<WeakReference>> _groupNameToElements; 
 
        #region GroupName
        /// <summary> 
        /// Gets or sets mutually exclusive RadioButton groups.
        /// </summary>
        public string GroupName 
        {
            get { return GetValue(GroupNameProperty) as string; }
            set { SetValue(GroupNameProperty, value); } 
        } 

        /// <summary> 
        /// Identifies the GroupName dependency property.
        /// </summary>
        public static readonly DependencyProperty GroupNameProperty = 
            DependencyProperty.RegisterCore(
                "GroupName",
                typeof(string), 
                typeof(RadioButton), 
                new PropertyMetadata(OnGroupNamePropertyChanged));
 
        /// <summary>
        /// GroupNameProperty property changed handler.
        /// </summary> 
        /// <param name="d">RadioButton that changed its GroupName.</param>
        /// <param name="e">DependencyPropertyChangedEventArgs.</param>
        private static void OnGroupNamePropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) 
        { 
            RadioButton source = d as RadioButton;
            Debug.Assert(source != null, 
                "The source is not an instance of RadioButton!");

            // Unregister the old name 
            Debug.Assert(typeof(string).IsInstanceOfType(e.OldValue) || (e.OldValue == null),
                "The old value is not an instance of string!");
            string oldValue = (string) e.OldValue; 
            if (!string.IsNullOrEmpty(oldValue)) 
            {
                Unregister(oldValue, source); 
            }

            // Register the new name 
            Debug.Assert(typeof(string).IsInstanceOfType(e.NewValue) || (e.NewValue == null),
                "The value is not an instance of string!");
            string value = (string) e.NewValue; 
            if (!string.IsNullOrEmpty(value)) 
            {
                Register(value, source); 
            }
        }
        #endregion GroupName 

        /// <summary>
        /// Initializes a new instance of the RadioButton class. 
        /// </summary> 
        public RadioButton()
        { 
            DefaultStyleKey = typeof(RadioButton);
        }
 
        /// <summary>
        /// Move the button to its next IsChecked value.
        /// </summary> 
        protected internal override void OnToggle() 
        {
            IsChecked = true; 
        }

        /// <summary> 
        /// Raise the Checked event.
        /// </summary>
        internal override void OnChecked(RoutedEventArgs e) 
        { 
            UpdateRadioButtonGroup();
            base.OnChecked(e); 
        }

        /// <summary> 
        /// Update this button's entire group
        /// </summary>
        private void UpdateRadioButtonGroup() 
        { 
            string groupName = GroupName;
            if (!string.IsNullOrEmpty(groupName)) 
            {
                // Get the root of this RadioButton's visual tree
                DependencyObject visualRoot = GetVisualRoot(this); 

                Debug.Assert(_groupNameToElements != null, "_groupNameToElements should already exist!");
                List<WeakReference> elements = _groupNameToElements[groupName]; 
                Debug.Assert(elements != null, string.Format(CultureInfo.InvariantCulture, 
                    "GroupName {0} not found in _groupNameToElements!", groupName));
 
                // Synchronize the rest of the elements in the group
                int index = 0;
                while (index < elements.Count) 
                {
                    RadioButton button = elements[index].Target as RadioButton;
                    if (button == null) 
                    { 
                        // Remove any weak references that were collected
                        elements.RemoveAt(index); 
                    }
                    else
                    { 
                        // Uncheck the button if it's in the same group and
                        // was already checked
                        if ((button != this) && 
                            (button.IsChecked == true) && 
                            (visualRoot == GetVisualRoot(button)))
                        { 
                            button.IsChecked = false;
                        }
                        index++; 
                    }
                }
            } 
            else 
            {
                // Synchronize the rest of the elements in the nameless group 
                Panel parent = Parent as Panel;
                if (parent != null)
                { 
                    //

                    foreach (UIElement element in parent.Children) 
                    { 
                        RadioButton button = element as RadioButton;
 
                        // Uncheck the button if it's in the same nameless group
                        // and was already checked
                        if ((button != null) && 
                            (button != this) &&
                            string.IsNullOrEmpty(button.GroupName) &&
                            (button.IsChecked == true)) 
                        { 
                            button.IsChecked = false;
                        } 
                    }
                }
            } 
        }

        /// <summary> 
        /// Regsiter a radio button with a group. 
        /// </summary>
        /// <param name="groupName">Name of the RadioButton's group.</param> 
        /// <param name="radioButton">RadioButton.</param>
        private static void Register(string groupName, RadioButton radioButton)
        { 
            Debug.Assert(!string.IsNullOrEmpty(groupName), "No groupName provided!");
            Debug.Assert(radioButton != null, "No radioButton provided!");
 
            if (_groupNameToElements == null) 
            {
                _groupNameToElements = new Dictionary<string, List<WeakReference>>(1); 
            }

            List<WeakReference> elements = null; 
            if (!_groupNameToElements.TryGetValue(groupName, out elements) || (elements == null))
            {
                elements = new List<WeakReference>(1); 
                _groupNameToElements[groupName] = elements; 
            }
            else 
            {
                PurgeExpiredReferences(elements, null);
            } 

            elements.Add(new WeakReference(radioButton));
        } 
 
        /// <summary>
        /// Unregister a radio button with a group. 
        /// </summary>
        /// <param name="groupName">Name of the RadioButton's group.</param>
        /// <param name="radioButton">RadioButton.</param> 
        private static void Unregister(string groupName, RadioButton radioButton)
        {
            Debug.Assert(!string.IsNullOrEmpty(groupName), "No groupName provided!"); 
            Debug.Assert(radioButton != null, "No radioButton provided!"); 

            if (_groupNameToElements != null) 
            {
                List<WeakReference> elements = _groupNameToElements[groupName];
                if (elements != null) 
                {
                    PurgeExpiredReferences(elements, radioButton);
                    if (elements.Count == 0) 
                    { 
                        _groupNameToElements.Remove(groupName);
                    } 
                }
            }
        } 

        /// <summary>
        /// Purge the list of any dead elements or any elements matching a 
        /// specific element to remove. 
        /// </summary>
        /// <param name="elements">List of elements to purge.</param> 
        /// <param name="elementToRemove">
        /// Element to purge along with any expired references.
        /// </param> 
        private static void PurgeExpiredReferences(List<WeakReference> elements, object elementToRemove)
        {
            Debug.Assert(elements != null, "No elements provided!"); 
 
            int index = 0;
            while (index < elements.Count) 
            {
                object target = elements[index].Target;
                if ((target == null) || (target == elementToRemove)) 
                {
                    elements.RemoveAt(index);
                } 
                else 
                {
                    index++; 
                }
            }
        } 

        protected override AutomationPeer OnCreateAutomationPeer ()
        {
            return new RadioButtonAutomationPeer (this);
        }
    
    // Moonlight: This method wasn't included in the control drop. 
    public override string ToString ()
    {
      string content = Content == null ? string.Empty : Content.ToString ();
      string ischecked = IsChecked.HasValue ? IsChecked.Value.ToString () : "null";
      return string.Format("System.Windows.Controls.RadioButton Content:{0} IsChecked:{1}", content, ischecked);
    }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.