SetTitle() public method

Sets the title.
public SetTitle ( string title ) : void
title string The title.
return void
Esempio n. 1
0
 /// <summary>
 /// Initializes the workbench.
 /// </summary>
 public static void InitializeWorkbench(string title)
 {
     if (!_init)
     {
         instance = new Workbench();
         instance.SetTitle(title);
         _init = true;
         WorkbenchInitialized(instance, EventArgs.Empty);
     }
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes the workbench.
 /// </summary>
 public static void InitializeWorkbench(string title)
 {
     if (!_init)
     {
         instance = new Workbench();
         instance.SetTitle(title);
         _init = true;
         WorkbenchInitialized(instance, EventArgs.Empty);
     }
 }