ant-design/components/dropdown/demo/overlay-visible.md

69 lines
1.4 KiB
Markdown
Raw Normal View History

---
order: 7
2016-07-04 10:48:21 +08:00
title:
zh-CN: 菜单隐藏方式
en-US: The way of hiding menu.
2016-04-28 10:59:52 +08:00
---
2016-07-04 10:48:21 +08:00
## zh-CN
默认是点击关闭菜单,可以关闭此功能。
2016-07-04 10:48:21 +08:00
## en-US
The default is to close the menu when you click on menu items, this feature can be turned off.
```tsx
import { DownOutlined } from '@ant-design/icons';
import type { MenuProps } from 'antd';
2022-05-21 22:14:15 +08:00
import { Dropdown, Menu, Space } from 'antd';
import React, { useState } from 'react';
const App: React.FC = () => {
const [visible, setVisible] = useState(false);
2018-06-27 15:55:04 +08:00
const handleMenuClick: MenuProps['onClick'] = e => {
if (e.key === '3') {
setVisible(false);
}
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
const handleVisibleChange = (flag: boolean) => {
setVisible(flag);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
const menu = (
<Menu
onClick={handleMenuClick}
items={[
{
label: 'Clicking me will not close the menu.',
key: '1',
},
{
label: 'Clicking me will not close the menu also.',
key: '2',
},
{
label: 'Clicking me will close the menu.',
key: '3',
},
]}
/>
);
return (
<Dropdown overlay={menu} onVisibleChange={handleVisibleChange} visible={visible}>
<a onClick={e => e.preventDefault()}>
<Space>
Hover me
<DownOutlined />
</Space>
</a>
</Dropdown>
);
};
export default App;
2019-05-07 14:57:32 +08:00
```