Example #1
0
        // Parameter Thumb
        private void AddParameterThumb(PParameterBinder parameterBinder)
        {
            BindThumb thumb;

            ParameterThumbs.Add(
                thumb = new BindThumb(parameterBinder));

            AddThumbCore(thumb);
        }
Example #2
0
        public PLogin() : base()
        {
            this.AddNewBinder(BindOptions.Input);

            this.EmailBinder    = this.AddParamterBinder("이메일", typeof(string));
            this.PasswordBinder = this.AddParamterBinder("비밀번호", typeof(string));

            this.AddBinder(new PNamedBinder(this, BindOptions.Output)
            {
                Title = "성공"
            });

            this.AddBinder(new PNamedBinder(this, BindOptions.Output)
            {
                Title = "실패"
            });
        }
Example #3
0
 public PLambdaReturn()
 {
     this.AddNewBinder(BindOptions.Input);
     this.ValueBinder = this.AddParamterBinder("값", typeof(object));
 }