Click here to Skip to main content
15,891,431 members
Articles / Desktop Programming / WPF

ScanX - A Registry Cleaner

Rate me:
Please Sign up or sign in to vote.
4.95/5 (92 votes)
29 Jan 2012CPOL11 min read 173.8K   12.5K   208  
C#/WPF - ScanX: Creating a commercial quality Registry cleaner.
using System.Windows;
using System.Windows.Controls;

namespace RegScanHarness.Helpers.Util
{
    public class GridUtils
    {
        #region RowDefinitions attached property

        /// <summary>
        /// Identified the RowDefinitions attached property
        /// </summary>
        public static readonly DependencyProperty RowDefinitionsProperty =
            DependencyProperty.RegisterAttached("RowDefinitions", typeof(string), typeof(GridUtils),
                new PropertyMetadata("", new PropertyChangedCallback(OnRowDefinitionsPropertyChanged)));

        /// <summary>
        /// Gets the value of the RowDefinitions property
        /// </summary>
        public static string GetRowDefinitions(DependencyObject d)
        {
            return (string)d.GetValue(RowDefinitionsProperty);
        }

        /// <summary>
        /// Sets the value of the RowDefinitions property
        /// </summary>
        public static void SetRowDefinitions(DependencyObject d, string value)
        {
            d.SetValue(RowDefinitionsProperty, value);
        }

        /// <summary>
        /// Handles property changed event for the RowDefinitions property, constructing
        /// the required RowDefinitions elements on the grid which this property is attached to.
        /// </summary>
        private static void OnRowDefinitionsPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            Grid targetGrid = d as Grid;

            // construct the required row definitions
            targetGrid.RowDefinitions.Clear();
            string rowDefs = e.NewValue as string;
            var rowDefArray = rowDefs.Split(',');
            foreach (string rowDefinition in rowDefArray)
            {
                if (rowDefinition.Trim() == "")
                {
                    targetGrid.RowDefinitions.Add(new RowDefinition());
                }
                else
                {
                    targetGrid.RowDefinitions.Add(new RowDefinition()
                    {
                        Height = ParseLength(rowDefinition)
                    });
                }
            }
        }

        #endregion


        #region ColumnDefinitions attached property

        /// <summary>
        /// Identifies the ColumnDefinitions attached property
        /// </summary>
        public static readonly DependencyProperty ColumnDefinitionsProperty =
            DependencyProperty.RegisterAttached("ColumnDefinitions", typeof(string), typeof(GridUtils),
                new PropertyMetadata("", new PropertyChangedCallback(OnColumnDefinitionsPropertyChanged)));

        /// <summary>
        /// Gets the value of the ColumnDefinitions property
        /// </summary>
        public static string GetColumnDefinitions(DependencyObject d)
        {
            return (string)d.GetValue(ColumnDefinitionsProperty);
        }

        /// <summary>
        /// Sets the value of the ColumnDefinitions property
        /// </summary>
        public static void SetColumnDefinitions(DependencyObject d, string value)
        {
            d.SetValue(ColumnDefinitionsProperty, value);
        }

        /// <summary>
        /// Handles property changed event for the ColumnDefinitions property, constructing
        /// the required ColumnDefinitions elements on the grid which this property is attached to.
        /// </summary>
        private static void OnColumnDefinitionsPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            Grid targetGrid = d as Grid;

            // construct the required column definitions
            targetGrid.ColumnDefinitions.Clear();
            string columnDefs = e.NewValue as string;
            var columnDefArray = columnDefs.Split(',');
            foreach (string columnDefinition in columnDefArray)
            {
                if (columnDefinition.Trim() == "")
                {
                    targetGrid.ColumnDefinitions.Add(new ColumnDefinition());
                }
                else
                {
                    targetGrid.ColumnDefinitions.Add(new ColumnDefinition()
                    {
                        Width = ParseLength(columnDefinition)
                    });
                }
            }
        }

        #endregion

        /// <summary>
        /// Parses a string to create a GridLength
        /// </summary>
        private static GridLength ParseLength(string length)
        {
            length = length.Trim();

            if (length.ToLowerInvariant().Equals("auto"))
            {
                return new GridLength(0, GridUnitType.Auto);
            }
            else if (length.Contains("*"))
            {
                length = length.Replace("*", "");
                if (string.IsNullOrEmpty(length)) length = "1";
                return new GridLength(double.Parse(length), GridUnitType.Star);
            }

            return new GridLength(double.Parse(length), GridUnitType.Pixel);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Network Administrator vtdev.com
Canada Canada
Network and programming specialist. Started in C, and have learned about 14 languages since then. Cisco programmer, and lately writing a lot of C# and WPF code, (learning Java too). If I can dream it up, I can probably put it to code. My software company, (VTDev), is on the verge of releasing a couple of very cool things.. keep you posted.

Comments and Discussions