ARCed.Scripting.ScriptEditorForm.ScriptEditorForm_Activated C# (CSharp) Method

ScriptEditorForm_Activated() private method

private ScriptEditorForm_Activated ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
		private void ScriptEditorForm_Activated(object sender, EventArgs e)
		{
			this._scintilla.FindReplace.Window = Windows.ScintillaFindReplace;
			Windows.ScintillaFindReplace.Scintilla = this._scintilla;
			this.UpdateScriptStatus();
			if (Pane != null && Pane.ContextMenuStrip == null)
				Pane.ContextMenuStrip = Windows.ScriptTabContextMenu;
		}