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


C# ScrollViewer.GetValue方法代码示例

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


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

示例1: GetAlwaysScrollToEnd

        public static bool GetAlwaysScrollToEnd(ScrollViewer scroll) {
            if (scroll == null) {
                throw new ArgumentNullException("scroll");
            }

            return (bool)scroll.GetValue(AlwaysScrollToEndProperty);
        }
开发者ID:mmalek06,项目名称:FunkyCodeEditor,代码行数:7,代码来源:Autoscroll.cs

示例2: SetAutoScrollToEnd

 public static void SetAutoScrollToEnd(ScrollViewer instance, bool value) {
     var oldHandler = (ScrollViewerAutoScrollToEndHandler) instance.GetValue(AutoScrollHandlerProperty);
     if (oldHandler != null) {
         oldHandler.Dispose();
         instance.SetValue(AutoScrollHandlerProperty, null);
     }
     instance.SetValue(AutoScrollProperty, value);
     if (value)
         instance.SetValue(AutoScrollHandlerProperty, new ScrollViewerAutoScrollToEndHandler(instance));
 }
开发者ID:MaHuJa,项目名称:withSIX.Desktop,代码行数:10,代码来源:ScrollviewerAutoScroll.cs

示例3: GetMouseWheelScroller

 public static MouseWheelScroller GetMouseWheelScroller(ScrollViewer element) { return (MouseWheelScroller)element.GetValue(MouseWheelScrollerProperty); }
开发者ID:philcockfield,项目名称:Open.TestHarness.SL,代码行数:1,代码来源:Behaviors.cs

示例4: GetAutoScrollToEndOnPropertyOrCollectionChanged

 public static object GetAutoScrollToEndOnPropertyOrCollectionChanged(ScrollViewer element)
 {
     return element.GetValue(AutoScrollToEndOnPropertyOrCollectionChangedProperty);
 }
开发者ID:masonyang,项目名称:OptiKey,代码行数:4,代码来源:ScrollViewerBehaviours.cs

示例5: GetAutoScrollToEnd

 public static bool GetAutoScrollToEnd(ScrollViewer instance) {
     return (bool) instance.GetValue(AutoScrollProperty);
 }
开发者ID:MaHuJa,项目名称:withSIX.Desktop,代码行数:3,代码来源:ScrollviewerAutoScroll.cs

示例6: GetVerticalScrollBarOnLeftSide

 public static bool GetVerticalScrollBarOnLeftSide(ScrollViewer obj)
 {
     return (bool)obj.GetValue(VerticalScrollBarOnLeftSideProperty);
 }
开发者ID:gjhwssg,项目名称:MahApps.Metro,代码行数:4,代码来源:ScrollBarHelper.cs

示例7: GetStoredFixedTransform

    internal static Transform GetStoredFixedTransform( ScrollViewer obj )
    {
      Transform actualValue = ( Transform )obj.GetValue( TableViewScrollViewer.StoredFixedTransformProperty );

      if( actualValue == null )
      {
        actualValue = TableViewScrollViewer.CreateFixedPanelTransform( obj );
        TableViewScrollViewer.SetStoredFixedTransform( obj, actualValue );
      }

      return actualValue;
    }
开发者ID:wangws556,项目名称:duoduo-chat,代码行数:12,代码来源:TableViewScrollViewer.cs

示例8: GetPreventViewUpdate

		public static bool GetPreventViewUpdate(ScrollViewer scrollViewer)
		{
			return (bool)scrollViewer.GetValue(PreventViewUpdateProperty);
		}
开发者ID:justdude,项目名称:DbExport,代码行数:4,代码来源:ControlBehavior.cs

示例9: GetHorizontalOffset

 private static double GetHorizontalOffset(ScrollViewer element)
 {
     if (element == null)
     {
         throw new ArgumentNullException("element");
     }
     return (double)element.GetValue(HorizontalOffsetProperty);
 }
开发者ID:shijiaxing,项目名称:SilverlightToolkit,代码行数:8,代码来源:ScrollViewerExtensions.cs

示例10: GetVerticalOffset

 private static double GetVerticalOffset(ScrollViewer element)
 {
     if (element == null)
         throw new ArgumentNullException("element");
     return (double)element.GetValue(ScrollViewerExtensions.VerticalOffsetProperty);
 }
开发者ID:sulerzh,项目名称:chart,代码行数:6,代码来源:ScrollViewerExtensions.cs

示例11: GetBoundaryFeedbackFix

 public static bool GetBoundaryFeedbackFix(ScrollViewer element)
 {
     return (bool)element.GetValue(BoundaryFeedbackFixProperty);
 }
开发者ID:roederf,项目名称:wpfReferenceApp,代码行数:4,代码来源:ScrollViewerHelper.cs


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