public MonthControl(ViewModelMonth month)
 {
     InitializeComponent();
     m_viewmodel = month;
     this.DataContext = m_viewmodel;
     RenderUI();
 }
Esempio n. 2
0
 public MonthControl(ViewModelMonth month)
 {
     InitializeComponent();
     m_viewmodel      = month;
     this.DataContext = m_viewmodel;
     RenderUI();
 }
 public MainPage()
 {
     InitializeComponent();
     ViewModelMonth month = new ViewModelMonth(DateTime.Today.Month);
     MonthControl control = new MonthControl(month);
     ContentPanel.Children.Add(control);
 }
Esempio n. 4
0
        public MainPage()
        {
            InitializeComponent();
            ViewModelMonth month   = new ViewModelMonth(DateTime.Today.Month);
            MonthControl   control = new MonthControl(month);

            ContentPanel.Children.Add(control);
        }