|
#region Assembly System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Web.Extensions.Design.dll
#endregion
using System.Collections.ObjectModel;
using System.ComponentModel.Design;
using System.Runtime;
using System.Web.UI.WebControls;
namespace System.Web.UI.Design.WebControls
{
internal class ListViewTiledLayout : ListViewAutoLayout
{
[TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
public ListViewTiledLayout(IDesignerHost designerHost, IDataSourceFieldSchema[] fieldSchema);
public override string ID { get; }
public override string LayoutName { get; }
public override Collection<ListViewAutoStyle> Styles { get; }
public override void ApplyLayout(ListView listView, string styleID, bool enableDeleting, bool enableEditing, bool enableInserting, DesignerPagerStyle pagerStyle, bool isDynamic);
protected override ITemplate CreateAlternatingItemTemplate(ListViewAutoStyle style, bool enableDeleting, bool enableEditing, bool hasButtons, bool isDynamic);
protected override ITemplate CreateEditItemTemplate(ListViewAutoStyle style, bool isDynamic);
protected override ITemplate CreateEmptyDataTemplate(ListViewAutoStyle style);
protected override ITemplate CreateEmptyItemTemplate(ListViewAutoStyle style);
protected override ITemplate CreateGroupTemplate(ListViewAutoStyle style, string itemPlaceholderID);
protected override ITemplate CreateInsertItemTemplate(ListViewAutoStyle style, bool isDynamic);
protected override ITemplate CreateItemTemplate(ListViewAutoStyle style, bool enableDeleting, bool enableEditing, bool hasButtons, bool isDynamic);
protected override ITemplate CreateLayoutTemplate(ListViewAutoStyle style, DesignerPagerStyle pagerStyle, string itemPlaceholderID, string groupPlaceholderID, bool hasButtons);
protected override ITemplate CreateSelectedItemTemplate(ListViewAutoStyle style, bool enableDeleting, bool enableEditing, bool hasButtons, bool isDynamic);
}
} |