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(); } }
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(); } }