コード例 #1
0
ファイル: LottieSwitchStyle.cs プロジェクト: woohyun/TizenFX
        public override void CopyFrom(BindableObject bindableObject)
        {
            base.CopyFrom(bindableObject);

            LottieSwitchStyle style = bindableObject as LottieSwitchStyle;

            if (style == null)
            {
                return;
            }

            LottieUrl = style.LottieUrl;
            PlayRange = style.PlayRange;
        }
コード例 #2
0
ファイル: LottieSwitchStyle.cs プロジェクト: woohyun/TizenFX
 public LottieSwitchStyle(LottieSwitchStyle style) : base(style)
 {
 }