Esempio n. 1
0
 public BoxLog()
 {
     IdLog      = 1;
     LogName    = "Textbox Log";
     logElement = TextboxSingleton.GetReference();
     logElement.Show();
 }
Esempio n. 2
0
        public static TextboxSingleton GetReference()
        {
            if (textbox_singleton == null)
            {
                textbox_singleton = new TextboxSingleton();
            }

            return(textbox_singleton);
        }