Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
123456789101112131415 |
- using System;
-
- namespace XCharts.Runtime
- {
- [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
- public sealed class DefaultAnimationAttribute : Attribute
- {
- public readonly AnimationType type;
-
- public DefaultAnimationAttribute(AnimationType handler)
- {
- this.type = handler;
- }
- }
- }
|