Exemplo n.º 1
0
        public void InformacoesDiretorioArquivo()
        {
            FrmInfoDiretorio frmInfo;
            ListView         tabela = getTabelaAtual();

            if (tabela.SelectedItems.Count > 0)
            {
                frmInfo = new FrmInfoDiretorio();
                Aba       aba = getAbaSelecionada();
                Diretorio dir = Tabela.Instancia.getLinhaSelecionada(tabela, false);
                dir.Aba.Nome = aba.Nome;
                frmInfo.setDiretorio(dir);
                frmInfo.ShowDialog();
            }
        }
Exemplo n.º 2
0
        public void InformacoesDiretorioArquivo()
        {
            FrmInfoDiretorio frmInfo;
            NodeView         tabela = getTabelaAtual();
            TreeIter         iter;

            tabela.Selection.GetSelected(out iter);

            if (tabela.Selection.IterIsSelected(iter))
            {
                frmInfo = new FrmInfoDiretorio();
                Aba       aba = getAbaSelecionada();
                Diretorio dir = Tabela.Instancia.getLinhaSelecionada(tabela, false);
                dir.Aba.Nome = aba.Nome;
                frmInfo.setDiretorio(dir);
                frmInfo.Show();
            }
        }