TimestampEditor.cs 323 B

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