当前位置: 首页>>代码示例>>C#>>正文


C# ListView.GetValue方法代码示例

本文整理汇总了C#中System.Windows.Controls.ListView.GetValue方法的典型用法代码示例。如果您正苦于以下问题:C# ListView.GetValue方法的具体用法?C# ListView.GetValue怎么用?C# ListView.GetValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Windows.Controls.ListView的用法示例。


在下文中一共展示了ListView.GetValue方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetOrCreateBehavior

        private static ListViewResizeBehavior GetOrCreateBehavior(ListView element)
        {
            var behavior = element.GetValue(GridViewColumnResizeBehaviorProperty) as ListViewResizeBehavior;
              if (behavior == null) {
            behavior = new ListViewResizeBehavior(element);
            element.SetValue(ListViewResizeBehaviorProperty, behavior);
              }

              return behavior;
        }
开发者ID:sakya,项目名称:wpfmpdclient,代码行数:10,代码来源:GridViewColumnResize.cs

示例2: GetCurrentSortColumn

		public static SortableGridViewColumn GetCurrentSortColumn(ListView listView) {
			return (SortableGridViewColumn)listView.GetValue(CurrentSortColumnProperty);
		}
开发者ID:arkanoid1,项目名称:dnSpy,代码行数:3,代码来源:SortableGridViewColumn.cs

示例3: GetSortDirection

		public static ColumnSortDirection GetSortDirection(ListView listView) {
			return (ColumnSortDirection)listView.GetValue(SortDirectionProperty);
		}
开发者ID:arkanoid1,项目名称:dnSpy,代码行数:3,代码来源:SortableGridViewColumn.cs

示例4: GetSortMode

		public static ListViewSortMode GetSortMode(ListView listView) {
			return (ListViewSortMode)listView.GetValue(SortModeProperty);
		}
开发者ID:arkanoid1,项目名称:dnSpy,代码行数:3,代码来源:SortableGridViewColumn.cs

示例5: GetSortAtHeaderClick

 /// <summary>
 /// Ruft den Wert der angefügten SortAtHeaderClick Abhängigkeitseigenschaft für eine bestimmte <see cref="System.Windows.Controls.ListView"/> ab.
 /// </summary>
 /// <param name="lv">Die <see cref="System.Windows.Controls.ListView"/> deren SortAtHeaderClick Wert abgerufen werden soll.</param>
 public static bool GetSortAtHeaderClick(ListView lv)
 {
     return (bool)lv.GetValue(SortAtHeaderClickProperty);
 }
开发者ID:Koopakiller,项目名称:School,代码行数:8,代码来源:ListViewSort.cs

示例6: GetDefaultSortComparer

		public static IItemComparer GetDefaultSortComparer(ListView element)
		{
			return (IItemComparer)element.GetValue(DefaultSortComparerProperty);
		}
开发者ID:xbadcode,项目名称:Rubezh,代码行数:4,代码来源:SortBehavior.cs

示例7: GetAutoScrollToSelectedItem

 public static bool GetAutoScrollToSelectedItem(ListView element)
 {
     return (bool)element.GetValue(AutoScrollToSelectedItemProperty);
 }
开发者ID:grarup,项目名称:SharpE,代码行数:4,代码来源:ListViewHelper.cs

示例8: GetIsToSelectedEnabled

 public static bool GetIsToSelectedEnabled(ListView d)
 {
     return (bool)d.GetValue(IsToSelectedEnabledProperty);
 }
开发者ID:CHERRISHGRY,项目名称:Hawk,代码行数:4,代码来源:ListScroll.cs

示例9: GetSelectedItems

		public static IList GetSelectedItems( ListView owner )
		{
			return ( IList )owner.GetValue( SelectedItemsProperty );
		}
开发者ID:micdenny,项目名称:Radical.Windows,代码行数:4,代码来源:ListViewManager.cs

示例10: GetIsLoadEventAttached

		static Boolean GetIsLoadEventAttached( ListView owner )
		{
			return ( Boolean )owner.GetValue( IsLoadEventAttachedProperty );
		}
开发者ID:micdenny,项目名称:Radical.Windows,代码行数:4,代码来源:ListViewManager.cs

示例11: GetAutoSort

 public static bool GetAutoSort(ListView obj)
 {
     return (bool)obj.GetValue(AutoSortProperty);
 }
开发者ID:GAMP,项目名称:DataInterfaces,代码行数:4,代码来源:GridViewBehavior.cs

示例12: GetSortGlyphDescending

 public static ImageSource GetSortGlyphDescending(ListView obj)
 {
     return (ImageSource)obj.GetValue(SortGlyphDescendingProperty);
 }
开发者ID:GAMP,项目名称:DataInterfaces,代码行数:4,代码来源:GridViewBehavior.cs

示例13: GetShowSortGlyph

 public static bool GetShowSortGlyph(ListView obj)
 {
     return (bool)obj.GetValue(ShowSortGlyphProperty);
 }
开发者ID:GAMP,项目名称:DataInterfaces,代码行数:4,代码来源:GridViewBehavior.cs

示例14: GetEnableDragHover

 public static UIElement GetEnableDragHover(ListView listView)
 {
     return (UIElement)listView.GetValue(EnableDragHoverProperty);
 }
开发者ID:grarup,项目名称:SharpE,代码行数:4,代码来源:ListViewHelper.cs

示例15: GetCanUserSortColumns

 public static bool GetCanUserSortColumns(ListView element)
 {
     return (bool)element.GetValue(CanUserSortColumnsProperty);
 }
开发者ID:vincenthamm,项目名称:ATF,代码行数:4,代码来源:GridViewSortBehavior.cs


注:本文中的System.Windows.Controls.ListView.GetValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。