123456789101112131415161718192021222324252627 |
- using System.Windows.Controls;
- namespace WPG.MBIPropType
- {
- public abstract class BaseTextInputControl : ITextInputControl
- {
- private ItemCollection m_Paramters;
- protected BaseTextInputControl()
- {
- ComboBox box = new ComboBox();
- this.m_Paramters = box.Items;
- this.m_Paramters.Clear();
- }
- public abstract bool InputControl(string fullText);
- public ItemCollection Parmerters
- {
- get
- {
- return this.m_Paramters;
- }
- }
- }
- }
|