| 12345678910111213141516171819202122232425 |
- namespace Easychart.Finance.Win
- {
- using Easychart.Finance;
- using System;
- using System.ComponentModel;
- public class SkinConverter : StringConverter
- {
- public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
- {
- return new TypeConverter.StandardValuesCollection(FormulaSkin.GetBuildInSkins());
- }
- public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
- {
- return true;
- }
- public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
- {
- return true;
- }
- }
- }
|