MergExt mergDataGridScroller如何临时禁用滚动

时间:2016-04-24 11:40:31

标签: scroll livecode

我在LiveCode桌面和移动应用程序中使用mergDataGridScroller,它运行正常。 但是在移动设备上,当我在卡片顶部显示一个组(在mergDataGridScroller之上并且与它无关)向用户提供其他选项时,mergDataGridScroller仍会对鼠标/触摸移动作出反应。 有没有办法暂时禁用mergDataGridScroller? 感谢

1 个答案:

答案 0 :(得分:0)

您有两种选择:

  • 隐藏mergDataGridScroller包装器组,该组也会隐藏您的数据网格,然后public static double StdDev(this IEnumerable<int> values, bool as_sample = false) { var count = values.Count(); if (count > 0) // check for divide by zero // Get the mean. double mean = values.Sum() / count; // Get the sum of the squares of the differences // between the values and the mean. var squares_query = from int value in values select (value - mean) * (value - mean); double sum_of_squares = squares_query.Sum(); return Math.Sqrt(sum_of_squares / (count - (as_sample ? 1 : 0))) }

  • 编辑行为脚本以添加如下命令:

    dispatch "updateVisible" to group <your mergDataGridScroller group name>