Esempio n. 1
0
 public void InitiateLogHandler(beRemote.Core.Common.SimpleSettings.IniFile configuration)
 {
     if (!_initiated)
     {
         view       = new GUI.LogViewer();
         _initiated = true;
     }
 }
Esempio n. 2
0
        internal void AddTabItem(string context, LogViewer logViewer)
        {
            TabControl tcContext = GetContext(context);

            String type = "LogViewer";



            TabPage tp = new TabPage(type);

            tp.Controls.Add(logViewer);

            logViewer.Dock = DockStyle.Fill;

            tcContext.TabPages.Add(tp);

            //_tabPages.Add(logViewer, tp);
        }