TimeEditor.cs 361 B

1234567891011121314151617
  1. namespace InABox.Core
  2. {
  3. public class TimeOfDayEditor : BaseEditor
  4. {
  5. public TimeOfDayEditor()
  6. {
  7. Visible = Visible.Default;
  8. Width = 70;
  9. Alignment = Alignment.MiddleCenter;
  10. }
  11. protected override BaseEditor DoClone()
  12. {
  13. return new TimeOfDayEditor();
  14. }
  15. }
  16. }