作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Pharo 3 中,右键单击使用 MultiColumnListModel 的菜单会出现 MessageNotUnderstood,如示例代码所示:
| specModel list itemMenu group1 item1 |
itemMenu := MenuModel new.
item1 := MenuItemModel new
name: 'Browse';
shortcut: $b command;
enabled: true;
action: [ self halt ];
yourself.
group1 := MenuGroupModel new
addMenuItem: item1;
autoRefresh: true;
yourself.
itemMenu addMenuGroup: group1.
specModel := DynamicComposableModel new
instantiateModels: #(list MultiColumnListModel);
yourself.
list := specModel list
items: {$a. $b. $c. $d. $f.};
displayBlock: [:e | {e asString. e isVowel asString} ];
menu: itemMenu;
yourself.
specModel
openWithSpecLayout: (SpecLayout composed
newRow: [: r | r add: #list ];
yourself).
这是规范中的错误还是我遗漏了什么?
最佳答案
这是 Spec 中一个众所周知的当前错误。有几个地方右键MNU
关于menuitem - 在 Spec 的 MultiColumnList 中打开菜单会给出 MNU,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24624244/
在 Pharo 3 中,右键单击使用 MultiColumnListModel 的菜单会出现 MessageNotUnderstood,如示例代码所示: | specModel list itemMe
我是一名优秀的程序员,十分优秀!