Ejemplo n.º 1
0
        public Welcome()
        {
            InitializeComponent();

            OKNext = new OKNextPageCommandButton(VM.ShowLogin);
            this.ApplicationBar.Buttons.Add(OKNext.Button);
        }
Ejemplo n.º 2
0
        public DatabaseServer()
        {
            InitializeComponent();

            _OK = new OKNextPageCommandButton(VM.GetProjects);

            this.ApplicationBar.Buttons.Add(
                _OK.Button
                );
        }
Ejemplo n.º 3
0
        public Project() {
            InitializeComponent();

            _OK = new OKNextPageCommandButton(VM.GetProfile);

            this.ApplicationBar.Buttons.Add(
                _OK.Button
                );

        }
Ejemplo n.º 4
0
        public Login() {
            InitializeComponent();

            _User = EventBindingTrigger<TextBox>.Create(this.Username);

            _Pass = EventBindingTrigger<PasswordBox>.Create(this.Password);

            _OK = new OKNextPageCommandButton(VM.GetRepositories);

            this.ApplicationBar.Buttons.Add(_OK.Button
                );
        }