TextBoxEditor.cs 382 B

123456789101112131415161718192021
  1. using System;
  2. namespace InABox.Core
  3. {
  4. public class TextBoxEditor : BaseEditor, IButtonEditor
  5. {
  6. public TextBoxEditor()
  7. {
  8. Visible = Visible.Default;
  9. }
  10. public Type Buttons { get; set; }
  11. protected override BaseEditor DoClone()
  12. {
  13. return new TextBoxEditor { Buttons = Buttons };
  14. }
  15. }
  16. }