千家信息网

ItemsControl布局控件怎么用

发表于:2024-11-18 作者:千家信息网编辑
千家信息网最后更新 2024年11月18日,这篇文章主要介绍了ItemsControl布局控件怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。1、ItemsStackPane
千家信息网最后更新 2024年11月18日ItemsControl布局控件怎么用

这篇文章主要介绍了ItemsControl布局控件怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

1、ItemsStackPanel 的示例
Controls/CollectionControl/ItemsControlDemo/LayoutControl/ItemsStackPanelDemo.xaml

TopLeft

Controls/CollectionControl/ItemsControlDemo/LayoutControl/ItemsStackPanelDemo.xaml.cs

/* * ItemsStackPanel - 虚拟化布局控件,ListView 的默认布局控件(继承自 Panel, 请参见 /Controls/LayoutControl/PanelDemo.xaml) *     FirstCacheIndex - 缓存中的第一项在全部数据中的索引位置 *     FirstVisibleIndex - 屏幕上显示的第一项在全部数据中的索引位置 *     LastCacheIndex - 缓存中的最后一项在全部数据中的索引位置 *     LastVisibleIndex - 屏幕上显示的最后一项在全部数据中的索引位置 *     CacheLength - 可见区外的需要缓存的数据的大小(以可见区条数大小的倍数为单位),默认值为 4.0 *         比如当可见区可以显示 10 条数据,CacheLength 为 4 时,可见区外的需要缓存的数据的大小则为 4 * 10 = 40,也就是说整个缓存数据的大小为 10 + 4 * 10 = 50 *         实际测试发现,可能会有一定的偏差,但是大体是准确的 */using System;using System.Collections.Generic;using System.Linq;using System.Xml.Linq;using Windows.UI.Xaml;using Windows.UI.Xaml.Controls;using Windows.UI.Xaml.Controls.Primitives;using Windows.UI.Xaml.Data;using Windows10.Common;namespace Windows10.Controls.CollectionControl.ItemsControlDemo.LayoutControl{public sealed partial class ItemsStackPanelDemo : Page    {public CollectionViewSource MyData        {get{                XElement root = XElement.Load("SiteMap.xml");var items = LoadData(root);// 构造数据源CollectionViewSource source = new CollectionViewSource();                source.IsSourceGrouped = true;                source.Source = items;                source.ItemsPath = new PropertyPath("Items");return source;            }        }        private ItemsStackPanel _itemsStackPanel1 = null;private ItemsStackPanel _itemsStackPanel2 = null;public ItemsStackPanelDemo()        {this.InitializeComponent();this.Loaded += ItemsStackPanelDemo_Loaded;        }private void ItemsStackPanelDemo_Loaded(object sender, RoutedEventArgs e)        {            DispatcherTimer dTimer = new DispatcherTimer();            dTimer.Interval = TimeSpan.Zero;            dTimer.Tick += DTimer_Tick;            dTimer.Start();// 获取 ListView 中的 ItemsStackPanel 控件_itemsStackPanel1 = listView1.ItemsPanelRoot as ItemsStackPanel;            _itemsStackPanel2 = listView2.ItemsPanelRoot as ItemsStackPanel;// 获取 ListView 中的 ItemsStackPanel 控件// _itemsStackPanel1 = Helper.GetVisualChild(listView1);// _itemsStackPanel2 = Helper.GetVisualChild(listView2);        }private void DTimer_Tick(object sender, object e)        {            lblMsg1.Text = "FirstCacheIndex: " + _itemsStackPanel1.FirstCacheIndex.ToString();            lblMsg1.Text += Environment.NewLine;            lblMsg1.Text += "FirstVisibleIndex: " + _itemsStackPanel1.FirstVisibleIndex.ToString();            lblMsg1.Text += Environment.NewLine;            lblMsg1.Text += "LastCacheIndex: " + _itemsStackPanel1.LastCacheIndex.ToString();            lblMsg1.Text += Environment.NewLine;            lblMsg1.Text += "LastVisibleIndex: " + _itemsStackPanel1.LastVisibleIndex.ToString();            lblMsg1.Text += Environment.NewLine;            lblMsg1.Text += "CacheLength: " + _itemsStackPanel1.CacheLength.ToString();        }private void cmbGroupHeaderPlacement_SelectionChanged(object sender, SelectionChangedEventArgs e)        {            _itemsStackPanel2.GroupHeaderPlacement = (GroupHeaderPlacement)Enum.Parse(typeof(GroupHeaderPlacement), (e.AddedItems[0] as ComboBoxItem).Content.ToString());        }// 解析 xml 数据private List LoadData(XElement root)        {if (root == null)return null;var items = from n in root.Elements("node")select new NavigationModel                        {                            Title = (string)n.Attribute("title"),                            Url = (string)n.Attribute("url"),                            Items = LoadData(n)                        };return items.ToList();        }    }}


2、ItemsWrapGrid 的示例
Controls/CollectionControl/ItemsControlDemo/LayoutControl/ItemsWrapGridDemo.xaml

TopLeft

Controls/CollectionControl/ItemsControlDemo/LayoutControl/ItemsWrapGridDemo.xaml.cs

/* * ItemsWrapGrid - 虚拟化布局控件,GridView 的默认布局控件(继承自 Panel, 请参见 /Controls/LayoutControl/PanelDemo.xaml) *     FirstCacheIndex - 缓存中的第一项在全部数据中的索引位置 *     FirstVisibleIndex - 屏幕上显示的第一项在全部数据中的索引位置 *     LastCacheIndex - 缓存中的最后一项在全部数据中的索引位置 *     LastVisibleIndex - 屏幕上显示的最后一项在全部数据中的索引位置 *     CacheLength - 可见区外的需要缓存的数据的大小(以可见区条数大小的倍数为单位),默认值为 4.0 *         比如当可见区可以显示 10 条数据,CacheLength 为 4 时,可见区外的需要缓存的数据的大小则为 4 * 10 = 40,也就是说整个缓存数据的大小为 10 + 4 * 10 = 50 *         实际测试发现,可能会有一定的偏差,但是大体是准确的 */using System;using System.Collections.Generic;using System.Linq;using System.Xml.Linq;using Windows.UI.Xaml;using Windows.UI.Xaml.Controls;using Windows.UI.Xaml.Controls.Primitives;using Windows.UI.Xaml.Data;using Windows10.Common;namespace Windows10.Controls.CollectionControl.ItemsControlDemo.LayoutControl{public sealed partial class ItemsWrapGridDemo : Page    {public CollectionViewSource MyData        {get{                XElement root = XElement.Load("SiteMap.xml");var items = LoadData(root);// 构造数据源CollectionViewSource source = new CollectionViewSource();                source.IsSourceGrouped = true;                source.Source = items;                source.ItemsPath = new PropertyPath("Items");return source;            }        }private ItemsWrapGrid _itemsWrapGrid1 = null;private ItemsWrapGrid _itemsWrapGrid2 = null;public ItemsWrapGridDemo()        {this.InitializeComponent();this.Loaded += ItemsWrapGridDemo_Loaded;        }private void ItemsWrapGridDemo_Loaded(object sender, RoutedEventArgs e)        {            DispatcherTimer dTimer = new DispatcherTimer();            dTimer.Interval = TimeSpan.Zero;            dTimer.Tick += DTimer_Tick;            dTimer.Start();// 获取 GridView 中的 ItemsWrapGrid 控件_itemsWrapGrid1 = gridView1.ItemsPanelRoot as ItemsWrapGrid;            _itemsWrapGrid2 = gridView2.ItemsPanelRoot as ItemsWrapGrid;// 获取 GridView 中的 ItemsWrapGrid 控件// _itemsWrapGrid1 = Helper.GetVisualChild(gridView1);// _itemsWrapGrid2 = Helper.GetVisualChild(gridView2);        }private void DTimer_Tick(object sender, object e)        {            lblMsg1.Text = "FirstCacheIndex: " + _itemsWrapGrid1.FirstCacheIndex.ToString();            lblMsg1.Text += Environment.NewLine;            lblMsg1.Text += "FirstVisibleIndex: " + _itemsWrapGrid1.FirstVisibleIndex.ToString();            lblMsg1.Text += Environment.NewLine;            lblMsg1.Text += "LastCacheIndex: " + _itemsWrapGrid1.LastCacheIndex.ToString();            lblMsg1.Text += Environment.NewLine;            lblMsg1.Text += "LastVisibleIndex: " + _itemsWrapGrid1.LastVisibleIndex.ToString();            lblMsg1.Text += Environment.NewLine;            lblMsg1.Text += "CacheLength: " + _itemsWrapGrid1.CacheLength.ToString();        }private void cmbGroupHeaderPlacement_SelectionChanged(object sender, SelectionChangedEventArgs e)        {            _itemsWrapGrid2.GroupHeaderPlacement = (GroupHeaderPlacement)Enum.Parse(typeof(GroupHeaderPlacement), (e.AddedItems[0] as ComboBoxItem).Content.ToString());        }// 解析 xml 数据private List LoadData(XElement root)        {if (root == null)return null;var items = from n in root.Elements("node")select new NavigationModel                        {                            Title = (string)n.Attribute("title"),                            Url = (string)n.Attribute("url"),                            Items = LoadData(n)                        };return items.ToList();        }    }}

感谢你能够认真阅读完这篇文章,希望小编分享的"ItemsControl布局控件怎么用"这篇文章对大家有帮助,同时也希望大家多多支持,关注行业资讯频道,更多相关知识等着你来学习!

0