Ви не можете вибрати більше 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;
- }
- }
- }
|