-
Notifications
You must be signed in to change notification settings - Fork 743
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(swipecontrol): Implement the core of the SwipeControl
- Loading branch information
Showing
10 changed files
with
2,319 additions
and
2,150 deletions.
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
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
30 changes: 30 additions & 0 deletions
30
src/Uno.UI/UI/Xaml/Controls/SwipeControl/SwipeControl.Uno.cs
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
using System.Runtime.CompilerServices; | ||
using System.Text; | ||
|
||
namespace Windows.UI.Xaml.Controls | ||
{ | ||
public partial class SwipeControl | ||
{ | ||
[Conditional("DEBUG")] | ||
private static void SWIPECONTROL_TRACE_INFO(SwipeControl that, [CallerLineNumber] int TRACE_MSG_METH = -1, [CallerMemberName] string METH_NAME = null, SwipeControl _ = null) | ||
{ | ||
|
||
} | ||
|
||
[Conditional("DEBUG")] | ||
private static void SWIPECONTROL_TRACE_VERBOSE(SwipeControl that, [CallerLineNumber] int TRACE_MSG_METH = -1, [CallerMemberName] string METH_NAME = null, SwipeControl _ = null) | ||
{ | ||
|
||
} | ||
|
||
// TODO Uno - Interactions | ||
private void InitializeInteractionTracker() { } | ||
|
||
private void ConfigurePositionInertiaRestingValues() { } | ||
|
||
private void IdleStateEntered(object @null, object @also_null) { } | ||
} | ||
} |
Oops, something went wrong.