PivotIC# WPF 代码添加PivotItem

Posted ARM830

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PivotIC# WPF 代码添加PivotItem相关的知识,希望对你有一定的参考价值。

            PivotItem new_PivotItem = new PivotItem();//新建Pivotitem
            ListView new_ListView = new ListView();//新建listview作为PivotItem的内容
            ScrollViewer new_ScrollViewer = new ScrollViewer();//新建ScrollViewer作为Listview的嵌套
            new_PivotItem.Content = new_ScrollViewer;//设置pivotitem的内容
            new_ScrollViewer.Content = new_ListView; //将lsitview加到scrollview中否则滑动不正常...      
            new_ListView.ItemTemplate = LiJuDataTemplate;//listview提前添加template
            new_ListView.ItemsSource = LijuData.GetData;//   添加数据源           
            new_PivotItem.Header = "测试";//设置header
            new_PivotItem.Margin =  new Thickness(0,-14,0,0);//设置在ipivot中的位置
            new_PivotItem.Background = new SolidColorBrush(Colors.Silver);  //设置背景                    
            See_Grid_Pivot.Items.Add(new_PivotItem);//在pivot中添加新的pivotitem

 

以上是关于PivotIC# WPF 代码添加PivotItem的主要内容,如果未能解决你的问题,请参考以下文章

从后面的代码中添加组合框项。 [WPF]

C# wpf listview 如何动态添加 高手回答下

wpf窗体添加事件的地方在哪里?

WPF 从后面的代码添加的 UserControl 绑定到祖先

从代码隐藏(C#、WPF)添加时,用户控件无法在 ListBox 中正确显示

如何通过代码生成 WPF 控件