123456789101112131415161718192021 |
- using System;
- namespace InABox.Core
- {
-
- public class TextBoxEditor : BaseEditor, IButtonEditor
- {
- public TextBoxEditor()
- {
- Visible = Visible.Default;
- }
- public Type Buttons { get; set; }
- protected override BaseEditor DoClone()
- {
- return new TextBoxEditor { Buttons = Buttons };
- }
- }
- }
|