當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。