説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

DefaultAnimationAttribute.cs 347B

123456789101112131415
  1. using System;
  2. namespace XCharts.Runtime
  3. {
  4. [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
  5. public sealed class DefaultAnimationAttribute : Attribute
  6. {
  7. public readonly AnimationType type;
  8. public DefaultAnimationAttribute(AnimationType handler)
  9. {
  10. this.type = handler;
  11. }
  12. }
  13. }