public MainWindow() { InitializeComponent(); core = new SchematixCore(this); }
/// <summary> /// Коструктор /// </summary> /// <param name="mainWindow"></param> public SchematixCore(MainWindow mainWindow) { this.mainWindow = mainWindow; core = this; }
public Compiler(ModelingLanguage ModelingLanguage, Project project, SchematixCore core) { this.project = project; this.core = core; LoadCompiler(ModelingLanguage); }
public SearchReplaceUserControl(SchematixCore core, Schematix.Windows.Code.Code code) { this.core = core; textSearcher = new TextSearcher(); InitializeComponent(); }