mirror of
https://gitee.com/handyorg/HandyControl.git
synced 2024-12-02 20:07:56 +08:00
45 lines
1.7 KiB
C#
45 lines
1.7 KiB
C#
namespace HandyControlDemo.Data
|
|
{
|
|
public class MessageToken
|
|
{
|
|
public static readonly string GrowlDemoCtl = nameof(GrowlDemoCtl);
|
|
|
|
public static readonly string LoadingDemoCtl = nameof(LoadingDemoCtl);
|
|
|
|
public static readonly string ImageBrowserDemoCtl = nameof(ImageBrowserDemoCtl);
|
|
|
|
public static readonly string ColorPickerDemoCtl = nameof(ColorPickerDemoCtl);
|
|
|
|
public static readonly string CarouselDemoCtl = nameof(CarouselDemoCtl);
|
|
|
|
public static readonly string CompareSliderDemoCtl = nameof(CompareSliderDemoCtl);
|
|
|
|
public static readonly string TimeBarDemoCtl = nameof(TimeBarDemoCtl);
|
|
|
|
public static readonly string PaginationDemoCtl = nameof(PaginationDemoCtl);
|
|
|
|
public static readonly string AnimationPathDemoCtl = nameof(AnimationPathDemoCtl);
|
|
|
|
public static readonly string StepBarDemoCtl = nameof(StepBarDemoCtl);
|
|
|
|
public static readonly string ClockDemoCtl = nameof(ClockDemoCtl);
|
|
|
|
public static readonly string TimePickerDemoCtl = nameof(TimePickerDemoCtl);
|
|
|
|
public static readonly string ButtonDemoCtl = nameof(ButtonDemoCtl);
|
|
|
|
public static readonly string ToggleButtonDemoCtl = nameof(ToggleButtonDemoCtl);
|
|
|
|
public static readonly string ExpanderDemoCtl = nameof(ExpanderDemoCtl);
|
|
|
|
public static readonly string ProgressBarDemoCtl = nameof(ProgressBarDemoCtl);
|
|
|
|
public static readonly string TabControlDemoCtl = nameof(TabControlDemoCtl);
|
|
|
|
public static readonly string CalendarDemoCtl = nameof(CalendarDemoCtl);
|
|
|
|
public static readonly string DatePickerDemoCtl = nameof(DatePickerDemoCtl);
|
|
|
|
public static readonly string LoadShowContent = nameof(LoadShowContent);
|
|
}
|
|
} |