12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Tofly.CoreUI.Control;
- namespace Tofly.DataEditUI
- {
- public interface IEditParamterSetForm :IDataForm
- {
- IFieldRadioGroup rgSELFEATURE { get; }
- IFieldRadioGroup rgSELLAYER { get; }
- ISpinEdit intSEARCHTOL { get; }
- ISpinEdit intSNAPTOL { get; }
- ISpinEdit intLINKLONG { get; }
- ISpinEdit doubleLINEBUFFER { get; }
- ISpinEdit doubleWEED { get; }
- IComboBox cbBUFFERTYPE { get; }
- ITextBox tbELEMENTNAME { get; }
- ITextBox tbSELADD { get; }
- ITextBox tbSELSUBTRACT { get; }
- ITextBox tbMOVE { get; }
- ITextBox tbCLEAR { get; }
- ITextBox tbUNDO { get; }
- ITextBox tbREDO { get; }
- ITextBox tbFINISH { get; }
- ITextBox tbTURN { get; }
- ITextBox tbSNAP { get; }
- ITextBox tbXYIN { get; }
- IButton btnOK { get; }
- IGridControl RelLayerGridControl { get; }
- }
- }
|