DesignerAutoFormat.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / DesignerAutoFormat.cs / 1 / DesignerAutoFormat.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Web.UI.Design { 
 
    using System;
    using System.ComponentModel.Design; 
    using System.Drawing;
    using System.Web.UI;
    using System.Web.UI.WebControls;
 
    using Control = System.Web.UI.Control;
 
    ///  
    public abstract class DesignerAutoFormat {
 
        private string _name;
        private DesignerAutoFormatStyle _style;

        protected DesignerAutoFormat(string name) { 
            if ((name == null) || (name.Length == 0)) {
                throw new ArgumentNullException("name"); 
            } 

            _name = name; 
        }

        /// 
        public string Name { 
            get {
                return _name; 
            } 
        }
 
        public DesignerAutoFormatStyle Style {
            get {
                if (_style == null) {
                    _style = new DesignerAutoFormatStyle(); 
                }
 
                return _style; 
            }
        } 


        /// 
        public abstract void Apply(Control control); 

        public virtual Control GetPreviewControl(Control runtimeControl) { 
            IDesignerHost host = (IDesignerHost)runtimeControl.Site.GetService(typeof(IDesignerHost)); 
            ControlDesigner designer = host.GetDesigner(runtimeControl) as ControlDesigner;
 
            if (designer != null) {
                return designer.CreateClonedControl(host, true);
            }
            return null; 
        }
 
        ///  
        public override string ToString() {
            return Name; 
        }
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK