We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da89a81 commit a3fe79fCopy full SHA for a3fe79f
dev/DevWinUI.Controls/Controls/Composition/StoreCarousel/StoreCarousel.cs
@@ -353,6 +353,15 @@ private void GoToNextPrev(bool isNext)
353
pipsPager.SelectedPageIndex = newIndex;
354
}
355
356
+ public void GoToNext()
357
+ {
358
+ GoToNextPrev(true);
359
+ }
360
+ public void GoToPrevious()
361
362
+ GoToNextPrev(false);
363
364
+
365
public void GoToIndex(int index)
366
{
367
if (imageList.Count < 1) return;
@@ -433,7 +442,7 @@ private LinearGradientBrush CreateLinearGradiantBrush(Color color)
433
442
return brush;
434
443
435
444
436
- public void RunTextAnimation()
445
+ private void RunTextAnimation()
437
446
438
447
if (actionPanel.RenderTransform is not CompositeTransform transform)
439
448
0 commit comments