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