Exemplo n.º 1
0
        public InitUi(InitModel model)
        {
			Logger.PageView("Init");

			this.model = model;
            InitializeComponent();
            DataContext = model;
        }
Exemplo n.º 2
0
        public GitFlowInitSection()
        {
            try
            {
                model = new InitModel(this);
                Title = "Recommended actions";
                SectionContent = new InitUi(model);

                UpdateVisibleState();

            }
            catch (Exception e)
            {
                MessageBox.Show(e.ToString());
            }
        }