Esempio n. 1
0
        public ItemArvoreFormulario(CE_Pesquisa04 pesquisa04, int nivel, bool temFilhos, ContentPage page, int count)
        {
            this.Pesquisa04 = pesquisa04;
            this.count      = count;
            ItemArvoreFormularioViewModel viewModel = new ItemArvoreFormularioViewModel(this, page);

            this.BindingContext = viewModel;
            Initialize(nivel, temFilhos);
            viewModel.TemFiltro = this.Pesquisa04.TemFiltro();
        }
Esempio n. 2
0
        public ItemArvoreFormulario(CE_Pesquisa06 pesquisa06, CE_Pesquisa04 pesquisa04, int nivel, bool temFilhos, ContentPage page, CE_Formulario formulario, int count)
        {
            this.Pesquisa04 = pesquisa04;
            this.Pesquisa06 = pesquisa06;
            this.Formulario = formulario;
            this.count      = count;
            ItemArvoreFormularioViewModel viewModel = new ItemArvoreFormularioViewModel(this, page);

            this.BindingContext = viewModel;
            Initialize(nivel, temFilhos);
            viewModel.IsRespondido = Pesquisa04.IsRespondido(formulario.codigoformulario);
        }