public TreeViewModel(string path)
 {
     reflection = new ReflectionViewModel {
         FileName = path
     };
     OutputList = new ObservableCollection <string>();
     Namespaces = new List <TreeViewItemViewModel>();
     Init();
 }
Beispiel #2
0
        static void Main(string[] args)
        {
            ReflectionViewModel      dataContext = new ReflectionViewModel();
            BaseMetadataView         currentRoot;
            Stack <BaseMetadataView> previousRoots = new Stack <BaseMetadataView>();

            dataContext.BrowseCommand.Execute(null);
            dataContext.LoadDLLCommand.Execute(null);
            currentRoot            = dataContext.Tree[0];
            currentRoot.IsExpanded = true;
            Console.WriteLine("Available commands:\n" +
                              "\t[typeName] - expands selected type\n" +
                              "\treturn - go back to previous type\n" +
                              "\ttoXML - save currnet model to XML file\n" +
                              "\texit - close application\n\n" +
                              "Press any key to continue: ");
            Console.ReadKey();
            Console.Clear();
            Console.WriteLine(currentRoot.Name);
            string nextType;

            while (true)
            {
                PrintChildren(currentRoot.Children);
                Console.Write("> ");
                nextType = Console.ReadLine();
                Console.Clear();
                if (nextType.Equals("return"))
                {
                    if (previousRoots.Count != 0)
                    {
                        currentRoot = previousRoots.Pop();
                    }
                }
                else if (nextType.Equals("exit"))
                {
                    return;
                }
                else if (nextType.Equals("toXML"))
                {
                    dataContext.SaveCommand.Execute(null);
                }
                else
                {
                    previousRoots.Push(currentRoot);
                    try
                    {
                        currentRoot = currentRoot.Children.First(i => i.Name.Equals(nextType));
                    }catch (InvalidOperationException)
                    {
                        Console.WriteLine("ERR: no such type");
                    }
                }
                Console.WriteLine(currentRoot.Name);
                currentRoot.IsExpanded = true;
            }
        }
Beispiel #3
0
 public MainWindow()
 {
     InitializeComponent();
     DataContext = new ReflectionViewModel();
 }
Beispiel #4
0
 public ReflectionViewPage()
 {
     InitializeComponent();
     BindingContext = viewModel = new ReflectionViewModel();
 }