protected override void Attached(SciterElement element) { element.SelectFirst("#frameworkDescription").SetText(RuntimeInformation.FrameworkDescription); element.SelectFirst("#processArchitecture").SetText(RuntimeInformation.ProcessArchitecture.ToString()); element.SelectFirst("#osArchitecture").SetText(RuntimeInformation.OSArchitecture.ToString()); element.SelectFirst("#osDescription").SetText(RuntimeInformation.OSDescription); element.SelectFirst("#osContent").SetAttributeValue("state", "visible"); base.Attached(element); }