mirror of
https://gitee.com/csharpui/CPF.git
synced 2026-08-28 11:37:04 +08:00
19 lines
239 B
C#
19 lines
239 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace CPF.Mac.CoreAnimation
|
||
|
|
{
|
||
|
|
public class CAAnimationStateEventArgs : EventArgs
|
||
|
|
{
|
||
|
|
public bool Finished
|
||
|
|
{
|
||
|
|
get;
|
||
|
|
set;
|
||
|
|
}
|
||
|
|
|
||
|
|
public CAAnimationStateEventArgs(bool finished)
|
||
|
|
{
|
||
|
|
Finished = finished;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|