Exemple #1
0
        public Welcome()
        {
            InitializeComponent();

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

            _OK = new OKNextPageCommandButton(VM.GetProjects);

            this.ApplicationBar.Buttons.Add(
                _OK.Button
                );
        }
        public Project() {
            InitializeComponent();

            _OK = new OKNextPageCommandButton(VM.GetProfile);

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

        }
        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
                );
        }