File tree 2 files changed +9
-3
lines changed
src/CutCode.CrossPlatform
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using System . Diagnostics ;
3
3
using Avalonia ;
4
+ using Avalonia . Animation ;
4
5
using Avalonia . Controls ;
5
6
using Avalonia . Controls . Metadata ;
6
7
using Avalonia . Input ;
8
+ using Avalonia . LogicalTree ;
7
9
using Avalonia . Styling ;
10
+ using Microsoft . CodeAnalysis . CSharp . Syntax ;
8
11
9
12
namespace CutCode . CrossPlatform . Controls ;
10
13
11
14
[ PseudoClasses ( ":Added" , ":Removed" ) ]
12
15
public class AnimatedListBoxItem : ListBoxItem , IStyleable
13
16
{
17
+ public AnimatedListBoxItem ( )
18
+ {
19
+ }
14
20
Type IStyleable . StyleKey => typeof ( AnimatedListBoxItem ) ;
15
21
16
22
private bool isAttached = false ;
17
23
protected override void OnAttachedToVisualTree ( VisualTreeAttachmentEventArgs e )
18
24
{
19
- base . OnAttachedToVisualTree ( e ) ;
20
25
if ( isAttached ) return ;
21
26
PseudoClasses . Set ( ":Added" , true ) ;
22
27
isAttached = true ;
28
+ base . OnAttachedToVisualTree ( e ) ;
23
29
}
24
30
25
31
protected override void OnDetachedFromVisualTree ( VisualTreeAttachmentEventArgs e )
Original file line number Diff line number Diff line change 32
32
33
33
<Style Selector =" controls|AnimatedListBoxItem:Added /template/ ContentPresenter#PART_ContentPresenter" >
34
34
<Style .Animations>
35
- <Animation Duration =" 0:0:0. 3" >
35
+ <Animation Duration =" 0:0:3" >
36
36
<KeyFrame Cue =" 0%" >
37
37
<Setter Property =" Opacity" Value =" 0.0" />
38
38
</KeyFrame >
44
44
</Style >
45
45
<Style Selector =" controls|AnimatedListBoxItem:Removed /template/ ContentPresenter#PART_ContentPresenter" >
46
46
<Style .Animations>
47
- <Animation Duration =" 0:0:0.3 " >
47
+ <Animation Duration =" 0:1:0 " >
48
48
<KeyFrame Cue =" 0%" >
49
49
<Setter Property =" Opacity" Value =" 1.0" />
50
50
</KeyFrame >
You can’t perform that action at this time.
0 commit comments