Beispiel #1
0
        public LoginPage()
        {
            InitializeComponent();

            contentVm = new ContentViewModel();
            this.AddProgressDisplay();
            this.Content.BindingContext = contentVm;

            LoadSettings();
        }
Beispiel #2
0
        public SettingPage()
        {
            InitializeComponent();

            contentVm = new ContentViewModel();
            this.AddProgressDisplay();
            this.Content.BindingContext = contentVm;

            txtServerName.Text = Settings.ServerName;

            LoadSettings();
        }