-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ux improvement for range selector #964
Merged
deltakosh
merged 3 commits into
CommunityToolkit:dev
from
liakamp:rangeslider-improvements
Feb 23, 2017
Merged
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,11 @@ public class RangeSelector : Control | |
/// </summary> | ||
public static readonly DependencyProperty RangeMaxProperty = DependencyProperty.Register(nameof(RangeMax), typeof(double), typeof(RangeSelector), new PropertyMetadata(1.0, RangeMaxChangedCallback)); | ||
|
||
/// <summary> | ||
/// Identifies the IsTouchOptimized dependency property. | ||
/// </summary> | ||
public static readonly DependencyProperty IsTouchOptimizedProperty = DependencyProperty.Register(nameof(IsTouchOptimized), typeof(bool), typeof(RangeSelector), new PropertyMetadata(false, IsTouchOptimizedChangedCallback)); | ||
|
||
private const double Epsilon = 0.01; | ||
|
||
private Border _outOfRangeContentContainer; | ||
|
@@ -174,6 +179,8 @@ protected override void OnApplyTemplate() | |
|
||
IsEnabledChanged += RangeSelector_IsEnabledChanged; | ||
|
||
ArrangeForTouch(); | ||
|
||
base.OnApplyTemplate(); | ||
} | ||
|
||
|
@@ -562,6 +569,57 @@ private static void RangeMaxChangedCallback(DependencyObject d, DependencyProper | |
} | ||
} | ||
|
||
/// <summary> | ||
/// Gets or sets a value indicating whether the control is optimized for touch use. | ||
/// </summary> | ||
/// <value> | ||
/// The value for touch optimization. | ||
/// </value> | ||
public bool IsTouchOptimized | ||
{ | ||
get | ||
{ | ||
return (bool)GetValue(IsTouchOptimizedProperty); | ||
} | ||
|
||
set | ||
{ | ||
SetValue(IsTouchOptimizedProperty, value); | ||
} | ||
} | ||
|
||
private static void IsTouchOptimizedChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e) | ||
{ | ||
var rangeSelector = d as RangeSelector; | ||
if (rangeSelector == null) | ||
{ | ||
return; | ||
} | ||
|
||
rangeSelector.ArrangeForTouch(); | ||
} | ||
|
||
private void ArrangeForTouch() | ||
{ | ||
if (_containerCanvas == null) | ||
{ | ||
return; | ||
} | ||
|
||
if (IsTouchOptimized) | ||
{ | ||
_outOfRangeContentContainer.Height = _minThumb.Height = _maxThumb.Height = 44; | ||
_minThumb.Width = _maxThumb.Width = 44; | ||
_minThumb.Margin = _maxThumb.Margin = new Thickness(-20, 0, 0, 0); | ||
} | ||
else | ||
{ | ||
_outOfRangeContentContainer.Height = _minThumb.Height = _maxThumb.Height = 24; | ||
_minThumb.Width = _maxThumb.Width = 8; | ||
_minThumb.Margin = _maxThumb.Margin = new Thickness(-8, 0, 0, 0); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I could not think of a more elegant solution here, there is no relation between the two cases (44-> 24, 20->8), any thoughts? |
||
} | ||
} | ||
|
||
private void SyncThumbs() | ||
{ | ||
if (_containerCanvas == null) | ||
|
@@ -574,6 +632,7 @@ private void SyncThumbs() | |
|
||
Canvas.SetLeft(_minThumb, relativeLeft); | ||
Canvas.SetLeft(_activeRectangle, relativeLeft); | ||
Canvas.SetTop(_activeRectangle, (_containerCanvas.ActualHeight - _activeRectangle.ActualHeight) / 2); | ||
|
||
Canvas.SetLeft(_maxThumb, relativeRight); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just check if these properties are not null