Esempio n. 1
0
 private void InitPageButtons()
 {
     CreateProjectButtonBindings = new DahuButtonBindings
     {
         IsBusy             = false,
         TappedFuncListener = CreateProject
     };
 }
Esempio n. 2
0
 private async void OnPageLoaded()
 {
     UpdateProfilMainInformation = new DahuButtonBindings
     {
         IsBusy             = false,
         TappedFuncListener = UpdateMainInformation
     };
 }
Esempio n. 3
0
 private void InitKnowMoreProjectButtonBindings()
 {
     KnowMoreProjectButtonBindings = new DahuButtonBindings()
     {
         IsBusy         = false,
         Name           = "En savoir plus",
         RedirectedLink = typeof(Discover)
     };
 }
Esempio n. 4
0
 private void InitManageProjectButtonBindings()
 {
     ManageProjectButtonBindings = new DahuButtonBindings()
     {
         IsBusy         = false,
         Name           = "Gérer",
         RedirectedLink = typeof(ManageProject)
     };
 }
Esempio n. 5
0
 public DahuSpecMenu()
 {
     this.InitializeComponent();
     (this.Content as FrameworkElement).DataContext = this;
     ResearchButtonBindings = new DahuButtonBindings
     {
         IsBusy             = false,
         TappedFuncListener = Research
     };
 }
 public PrivateProfilSkillsViewModel(IDataService service)
 {
     dataService            = service;
     AddSkillCommand        = new RelayCommand(AddSkill);
     OnPageLoadedCommand    = new RelayCommand(OnPageLoaded);
     AddSkillButtonBindings = new DahuButtonBindings
     {
         IsBusy             = false,
         TappedFuncListener = AddSkill
     };
 }
        public DahuSpecMenuViewModel(IDataService service)
        {
            dataService = service;

            ResearchButtonBindings = new DahuButtonBindings
            {
                IsBusy             = false,
                TappedFuncListener = Research
            };
            OnPageLoadedCommand = new RelayCommand(OnPageLoaded);
        }