Gets a reference to the minimized windows ToolStrip.
Namespace: MindFusion.Common.UI
File: WindowHost.js
The following code sets the size of the maximized, minimized and command strip of a Window instance:
JavaScript Copy Code |
---|
document.addEventListener("DOMContentLoaded", function () { var window = new ui.Window(); window.top = ui.Unit.percentage(25); window.left = ui.Unit.percentage(25); window.minWidth = ui.Unit.pixel(600); window.minHeight = ui.Unit.pixel(600); window.useFrameTitle = true; window.data = chartItem.item; window.templateUrl = "ChatWindow.html"; window.iconSrc = "icons\chart.png"; document.querySelector("#window_element").appendChild(window.draw()); } |