FormViewActionList.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebControls / FormViewActionList.cs / 1 / FormViewActionList.cs

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

namespace System.Web.UI.Design.WebControls { 
    using System; 
    using System.Collections;
    using System.ComponentModel; 
    using System.ComponentModel.Design;
    using System.Design;
    using System.Diagnostics;
    using System.Web.UI.Design; 
    using System.Web.UI.Design.Util;
    using System.Web.UI.WebControls; 
    using System.Windows.Forms; 

    ///  
    internal class FormViewActionList : DesignerActionList {
        private FormViewDesigner _formViewDesigner;

        private bool _allowPaging; 

        ///  
        public FormViewActionList(FormViewDesigner formViewDesigner) : base(formViewDesigner.Component) { 
            _formViewDesigner = formViewDesigner;
        } 

        /// 
        /// Lets the FormView designer specify whether the Page action should be visible/enabled
        ///  
        internal bool AllowPaging {
            get { 
                return _allowPaging; 
            }
            set { 
                _allowPaging = value;
            }
        }
 
        public override bool AutoShow {
            get { 
                return true; 
            }
            set { 
            }
        }

        ///  
        /// Property used by chrome to display the page checkbox.  Called through reflection.
        ///  
        public bool EnablePaging { 
            get {
                return _formViewDesigner.EnablePaging; 
            }
            set {
                _formViewDesigner.EnablePaging = value;
            } 
        }
 
        ///  
        public override DesignerActionItemCollection GetSortedActionItems() {
            DesignerActionItemCollection items = new DesignerActionItemCollection(); 

            if (AllowPaging) {
                items.Add(new DesignerActionPropertyItem("EnablePaging",
                                                                       SR.GetString(SR.FormView_EnablePaging), 
                                                                       "Behavior",
                                                                       SR.GetString(SR.FormView_EnablePagingDesc))); 
            } 
            return items;
        } 

    }
}

// 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