HandyControl/HandyControlDemo/Data/MessageToken.cs

103 lines
4.1 KiB
C#
Raw Normal View History

2018-09-04 15:42:37 +08:00
namespace HandyControlDemo.Data
{
2018-09-18 19:22:11 +08:00
public class MessageToken
2018-09-04 15:42:37 +08:00
{
2018-09-18 19:22:11 +08:00
public static readonly string GrowlDemoCtl = nameof(GrowlDemoCtl);
2018-10-31 15:49:04 +08:00
2018-09-18 19:22:11 +08:00
public static readonly string LoadingDemoCtl = nameof(LoadingDemoCtl);
2018-10-31 15:49:04 +08:00
2018-09-18 19:22:11 +08:00
public static readonly string ImageBrowserDemoCtl = nameof(ImageBrowserDemoCtl);
2018-10-31 15:49:04 +08:00
2018-09-18 19:22:11 +08:00
public static readonly string ColorPickerDemoCtl = nameof(ColorPickerDemoCtl);
2018-10-31 15:49:04 +08:00
2018-09-18 19:22:11 +08:00
public static readonly string CarouselDemoCtl = nameof(CarouselDemoCtl);
2018-10-31 15:49:04 +08:00
2018-09-18 19:22:11 +08:00
public static readonly string CompareSliderDemoCtl = nameof(CompareSliderDemoCtl);
2018-10-31 15:49:04 +08:00
2018-09-18 19:22:11 +08:00
public static readonly string TimeBarDemoCtl = nameof(TimeBarDemoCtl);
2018-10-31 15:49:04 +08:00
2018-09-18 19:22:11 +08:00
public static readonly string PaginationDemoCtl = nameof(PaginationDemoCtl);
2018-10-31 15:49:04 +08:00
2018-09-18 19:22:11 +08:00
public static readonly string AnimationPathDemoCtl = nameof(AnimationPathDemoCtl);
2018-10-31 15:49:04 +08:00
2018-09-18 19:22:11 +08:00
public static readonly string StepBarDemoCtl = nameof(StepBarDemoCtl);
2018-10-31 15:49:04 +08:00
2018-10-03 21:27:15 +08:00
public static readonly string ClockDemoCtl = nameof(ClockDemoCtl);
2018-10-31 15:49:04 +08:00
2018-10-03 21:27:15 +08:00
public static readonly string TimePickerDemoCtl = nameof(TimePickerDemoCtl);
2018-10-31 15:49:04 +08:00
2018-10-09 00:41:11 +08:00
public static readonly string CirclePanelDemoCtl = nameof(CirclePanelDemoCtl);
2018-10-31 15:49:04 +08:00
public static readonly string NumericUpDownDemoCtl = nameof(NumericUpDownDemoCtl);
2018-10-31 15:49:04 +08:00
public static readonly string WindowDemoCtl = nameof(WindowDemoCtl);
2018-10-31 15:49:04 +08:00
public static readonly string ScrollViewerDemoCtl = nameof(ScrollViewerDemoCtl);
2018-10-31 15:49:04 +08:00
2018-10-30 00:16:04 +08:00
public static readonly string PreviewSliderDemoCtl = nameof(PreviewSliderDemoCtl);
2018-10-31 15:49:04 +08:00
public static readonly string CircleProgressBarDemoCtl = nameof(CircleProgressBarDemoCtl);
public static readonly string TextBoxDemoCtl = nameof(TextBoxDemoCtl);
2018-11-17 16:58:11 +08:00
public static readonly string ComboBoxDemoCtl = nameof(ComboBoxDemoCtl);
2018-11-18 00:10:10 +08:00
public static readonly string PasswordBoxDemoCtl = nameof(PasswordBoxDemoCtl);
2018-09-18 19:22:11 +08:00
public static readonly string ButtonDemoCtl = nameof(ButtonDemoCtl);
2018-09-04 15:42:37 +08:00
2018-09-18 19:22:11 +08:00
public static readonly string ToggleButtonDemoCtl = nameof(ToggleButtonDemoCtl);
2018-09-04 15:42:37 +08:00
2018-09-18 19:22:11 +08:00
public static readonly string ExpanderDemoCtl = nameof(ExpanderDemoCtl);
2018-09-11 12:00:52 +08:00
2018-09-18 19:22:11 +08:00
public static readonly string ProgressBarDemoCtl = nameof(ProgressBarDemoCtl);
public static readonly string TabControlDemoCtl = nameof(TabControlDemoCtl);
2018-10-03 21:27:15 +08:00
public static readonly string CalendarDemoCtl = nameof(CalendarDemoCtl);
public static readonly string DatePickerDemoCtl = nameof(DatePickerDemoCtl);
public static readonly string NaiveTextBoxDemoCtl = nameof(NaiveTextBoxDemoCtl);
2018-10-09 00:41:11 +08:00
public static readonly string TextBlockDemoCtl = nameof(TextBlockDemoCtl);
2018-11-17 16:58:11 +08:00
public static readonly string NaiveComboBoxDemoCtl = nameof(NaiveComboBoxDemoCtl);
2018-10-09 00:41:11 +08:00
2018-11-18 00:10:10 +08:00
public static readonly string NaivePasswordBoxDemoCtl = nameof(NaivePasswordBoxDemoCtl);
2018-10-09 00:41:11 +08:00
2018-10-10 16:38:52 +08:00
public static readonly string NaiveTabControlDemoCtl = nameof(NaiveTabControlDemoCtl);
public static readonly string DataGridDemoCtl = nameof(DataGridDemoCtl);
public static readonly string CheckBoxDemoCtl = nameof(CheckBoxDemoCtl);
public static readonly string ListBoxDemoCtl = nameof(ListBoxDemoCtl);
public static readonly string MenuDemoCtl = nameof(MenuDemoCtl);
public static readonly string TreeViewDemoCtl = nameof(TreeViewDemoCtl);
public static readonly string BorderDemoCtl = nameof(BorderDemoCtl);
public static readonly string RadioButtonDemoCtl = nameof(RadioButtonDemoCtl);
public static readonly string NaiveScrollViewerDemoCtl = nameof(NaiveScrollViewerDemoCtl);
2018-10-28 16:44:10 +08:00
public static readonly string BrushDemoCtl = nameof(BrushDemoCtl);
2018-10-31 15:49:04 +08:00
public static readonly string SliderDemoCtl = nameof(SliderDemoCtl);
public static readonly string CommonWindow = nameof(CommonWindow);
public static readonly string CustomNonClientAreaWindow = nameof(CustomNonClientAreaWindow);
2018-09-18 19:22:11 +08:00
public static readonly string LoadShowContent = nameof(LoadShowContent);
2018-10-30 23:29:38 +08:00
2018-10-31 15:49:04 +08:00
public static readonly string FullSwitch = nameof(FullSwitch);
2018-10-30 23:29:38 +08:00
2018-10-31 15:49:04 +08:00
public static readonly string ContributorsView = nameof(ContributorsView);
2018-10-30 23:29:38 +08:00
2018-10-31 15:49:04 +08:00
public static readonly string ClearLeftSelected = nameof(ClearLeftSelected);
2018-09-18 19:22:11 +08:00
}
2018-09-04 15:42:37 +08:00
}