AdvancedLauncher.SDK.Model.PageItem.PageItem C# (CSharp) Method

PageItem() public method

Initializes a new instance of PageItem for specified name, Control and binding flag (false by default).
public PageItem ( string Name, Control Content, bool IsNameBinding = false ) : System.Windows.Controls
Name string Item name
Content System.Windows.Controls.Control Content or item
IsNameBinding bool Is it binding name
return System.Windows.Controls
        public PageItem(string Name, Control Content, bool IsNameBinding = false)
            : base(Name, IsNameBinding)
        {
            this.Content = new PageContainer(Content);
        }

Same methods

PageItem::PageItem ( string Name, IRemoteControl Content, bool IsNameBinding = false ) : System.Windows.Controls
PageItem