Skip to content

Commit 5d49527

Browse files
committed
updated animated listbox to work on adding to visualtree
1 parent 3f14cdc commit 5d49527

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

src/CutCode.CrossPlatform/Controls/AnimatedListBoxItem.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,31 @@
11
using System;
22
using System.Diagnostics;
33
using Avalonia;
4+
using Avalonia.Animation;
45
using Avalonia.Controls;
56
using Avalonia.Controls.Metadata;
67
using Avalonia.Input;
8+
using Avalonia.LogicalTree;
79
using Avalonia.Styling;
10+
using Microsoft.CodeAnalysis.CSharp.Syntax;
811

912
namespace CutCode.CrossPlatform.Controls;
1013

1114
[PseudoClasses(":Added", ":Removed")]
1215
public class AnimatedListBoxItem : ListBoxItem, IStyleable
1316
{
17+
public AnimatedListBoxItem()
18+
{
19+
}
1420
Type IStyleable.StyleKey => typeof(AnimatedListBoxItem);
1521

1622
private bool isAttached = false;
1723
protected override void OnAttachedToVisualTree(VisualTreeAttachmentEventArgs e)
1824
{
19-
base.OnAttachedToVisualTree(e);
2025
if (isAttached) return;
2126
PseudoClasses.Set(":Added", true);
2227
isAttached = true;
28+
base.OnAttachedToVisualTree(e);
2329
}
2430

2531
protected override void OnDetachedFromVisualTree(VisualTreeAttachmentEventArgs e)

src/CutCode.CrossPlatform/Styles/AnimatedListBoxItem.axaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
<Style Selector="controls|AnimatedListBoxItem:Added /template/ ContentPresenter#PART_ContentPresenter">
3434
<Style.Animations>
35-
<Animation Duration="0:0:0.3">
35+
<Animation Duration="0:0:3">
3636
<KeyFrame Cue="0%">
3737
<Setter Property="Opacity" Value="0.0"/>
3838
</KeyFrame>
@@ -44,7 +44,7 @@
4444
</Style>
4545
<Style Selector="controls|AnimatedListBoxItem:Removed /template/ ContentPresenter#PART_ContentPresenter">
4646
<Style.Animations>
47-
<Animation Duration="0:0:0.3">
47+
<Animation Duration="0:1:0">
4848
<KeyFrame Cue="0%">
4949
<Setter Property="Opacity" Value="1.0"/>
5050
</KeyFrame>

0 commit comments

Comments
 (0)