Ejemplo n.º 1
0
        private void show(LogItem l, bool subnodes)
        {
            if (l == null)
                return;

            TextViewer t = new TextViewer();
            t.Contents = l.ToString(subnodes);
            t.Wrap = false;
            t.ShowDialog();
        }