Windows 小工具调整大小失败
我有一个 Windows 小工具,当我使用以下代码关闭弹出窗口时,该小工具死机了:
function CheckDockState() {
System.Gadget.beginTransition();
var oBody = document.body.style;
if (System.Gadget.docked) {
oBody.height = 80;
} else {
oBody.height = 800;
}
System.Gadget.endTransition(System.Gadget.TransitionType.morph, timeTransition);
}
function flyoutClose() {
CheckDockState();
System.Gadget.Flyout.show = false;
}
现在,这工作很好,但是当我关闭弹出窗口时 - 我无法调整小工具的大小(使用小的“较大版本”按钮) )...
还有其他人遇到过这个问题吗?
干杯。
I have a windows gadget that dies when I close a flyout using the following code:
function CheckDockState() {
System.Gadget.beginTransition();
var oBody = document.body.style;
if (System.Gadget.docked) {
oBody.height = 80;
} else {
oBody.height = 800;
}
System.Gadget.endTransition(System.Gadget.TransitionType.morph, timeTransition);
}
function flyoutClose() {
CheckDockState();
System.Gadget.Flyout.show = false;
}
Now, this works fine but when I close the flyout - I cannot resize the gadget (using the little "larger version" button)...
Has anyone else had this problem?
Cheers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我打败了你们。
事实证明,System.Gadget 声明需要位于loaded() 函数中。
例如
,之前,我将它们放在文件的顶部。
Well, I beat you all to it..
Turns out that the System.Gadget declarations need to be in the loaded() function.
e.g.
Before, I had them just at the top of the file.