public AnchorUI(AnchorEditor editor)
 {
     this.editor = editor;
     this.left = new SpringControl(this);
     this.right = new SpringControl(this);
     this.top = new SpringControl(this);
     this.bottom = new SpringControl(this);
     this.tabOrder = new SpringControl[] { this.left, this.top, this.right, this.bottom };
     this.InitializeComponent();
 }
Esempio n. 2
0
 public AnchorUI(AnchorEditor editor)
 {
     this.editor   = editor;
     this.left     = new SpringControl(this);
     this.right    = new SpringControl(this);
     this.top      = new SpringControl(this);
     this.bottom   = new SpringControl(this);
     this.tabOrder = new SpringControl[] { this.left, this.top, this.right, this.bottom };
     this.InitializeComponent();
 }
Esempio n. 3
0
            public AnchorUI(AnchorEditor editor)
            {
                this.editor = editor;
                left        = new SpringControl(this);
                right       = new SpringControl(this);
                top         = new SpringControl(this);
                bottom      = new SpringControl(this);
                tabOrder    = new[] { left, top, right, bottom };

                InitializeComponent();
            }
Esempio n. 4
0
            public AnchorUI(AnchorEditor editor)
            {
                this.editor = editor;
                left        = new SpringControl(this)
                {
                    AccessibleRole = AccessibleRole.CheckButton
                };
                right = new SpringControl(this)
                {
                    AccessibleRole = AccessibleRole.CheckButton
                };
                top = new SpringControl(this)
                {
                    AccessibleRole = AccessibleRole.CheckButton
                };
                bottom = new SpringControl(this)
                {
                    AccessibleRole = AccessibleRole.CheckButton
                };
                tabOrder = new[] { left, top, right, bottom };

                InitializeComponent();
            }
 public SpringControlAccessibleObject(AnchorEditor.AnchorUI.SpringControl owner) : base(owner)
 {
 }
 public SpringControl(AnchorEditor.AnchorUI picker)
 {
     if (picker == null)
     {
         throw new ArgumentException();
     }
     this.picker = picker;
     base.TabStop = true;
 }