From 84700eb44cffe4b503a9ad22b1dfa8c703f356d2 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Fri, 15 Jun 2018 15:22:11 +0300 Subject: Improved LightTouchDataGrid Selection. --- .../DirectXGraphs/RealTimeGraphExDirectXLineScroll.cs | 11 ----------- .../ReachGraphs/RealTimeGraphExReachLineScroll.cs | 11 ----------- .../WriteableBitmap/WriteableBitmapBlitExtensions.cs | 2 -- 3 files changed, 24 deletions(-) (limited to 'Software/Visual_Studio/SideChains/RealTimeGraphEx') diff --git a/Software/Visual_Studio/SideChains/RealTimeGraphEx/DirectXGraphs/RealTimeGraphExDirectXLineScroll.cs b/Software/Visual_Studio/SideChains/RealTimeGraphEx/DirectXGraphs/RealTimeGraphExDirectXLineScroll.cs index e85d56a4d..0d1284c19 100644 --- a/Software/Visual_Studio/SideChains/RealTimeGraphEx/DirectXGraphs/RealTimeGraphExDirectXLineScroll.cs +++ b/Software/Visual_Studio/SideChains/RealTimeGraphEx/DirectXGraphs/RealTimeGraphExDirectXLineScroll.cs @@ -45,17 +45,6 @@ namespace RealTimeGraphEx.DirectXGraphs #region Properties - /// - /// Gets or sets the maximum vectorsCollection to display on the graph (default 1000, affects performance). - /// - public int MaxPoints - { - get { return (int)GetValue(MaxPointsProperty); } - set { SetValue(MaxPointsProperty, value); } - } - public static readonly DependencyProperty MaxPointsProperty = - DependencyProperty.Register("MaxPoints", typeof(int), typeof(RealTimeGraphExDirectXLineScroll), new PropertyMetadata(1000, new PropertyChangedCallback(CrossModelChanged))); - /// /// Gets or sets the graph fill color. diff --git a/Software/Visual_Studio/SideChains/RealTimeGraphEx/ReachGraphs/RealTimeGraphExReachLineScroll.cs b/Software/Visual_Studio/SideChains/RealTimeGraphEx/ReachGraphs/RealTimeGraphExReachLineScroll.cs index 77ac77479..d4026f7c3 100644 --- a/Software/Visual_Studio/SideChains/RealTimeGraphEx/ReachGraphs/RealTimeGraphExReachLineScroll.cs +++ b/Software/Visual_Studio/SideChains/RealTimeGraphEx/ReachGraphs/RealTimeGraphExReachLineScroll.cs @@ -36,17 +36,6 @@ namespace RealTimeGraphEx.ReachGraphs #region Properties - /// - /// Gets or sets the maximum points to display on the graph (default 1000, affects performance). - /// - public int MaxPoints - { - get { return (int)GetValue(MaxPointsProperty); } - set { SetValue(MaxPointsProperty, value); } - } - public static readonly DependencyProperty MaxPointsProperty = - DependencyProperty.Register("MaxPoints", typeof(int), typeof(RealTimeGraphExReachLineScroll), new PropertyMetadata(1000, new PropertyChangedCallback(CrossModelChanged))); - /// /// Gets or sets the graph strokes color. /// diff --git a/Software/Visual_Studio/SideChains/RealTimeGraphEx/WriteableBitmap/WriteableBitmapBlitExtensions.cs b/Software/Visual_Studio/SideChains/RealTimeGraphEx/WriteableBitmap/WriteableBitmapBlitExtensions.cs index 4219983d2..f52b515b8 100644 --- a/Software/Visual_Studio/SideChains/RealTimeGraphEx/WriteableBitmap/WriteableBitmapBlitExtensions.cs +++ b/Software/Visual_Studio/SideChains/RealTimeGraphEx/WriteableBitmap/WriteableBitmapBlitExtensions.cs @@ -382,8 +382,6 @@ namespace System.Windows.Media.Imaging internal static void Blit(BitmapContext destContext, int dpw, int dph, Rect destRect, BitmapContext srcContext, Rect sourceRect, int sourceWidth) { - const BlendMode blendMode = BlendMode.Alpha; - int dw = (int)destRect.Width; int dh = (int)destRect.Height; -- cgit v1.3.1