You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.3 KiB
69 lines
1.3 KiB
9 years ago
|
---
|
||
8 years ago
|
order: 7
|
||
9 years ago
|
title:
|
||
|
zh-CN: 菜单隐藏方式
|
||
|
en-US: The way of hiding menu.
|
||
9 years ago
|
---
|
||
9 years ago
|
|
||
9 years ago
|
## zh-CN
|
||
|
|
||
9 years ago
|
默认是点击关闭菜单,可以关闭此功能。
|
||
|
|
||
9 years ago
|
## en-US
|
||
|
|
||
|
The default is to close the menu when you click on menu items, this feature can be turned off.
|
||
|
|
||
3 years ago
|
```tsx
|
||
5 years ago
|
import { DownOutlined } from '@ant-design/icons';
|
||
3 years ago
|
import type { MenuProps } from 'antd';
|
||
3 years ago
|
import { Dropdown, Menu, Space } from 'antd';
|
||
|
import React, { useState } from 'react';
|
||
9 years ago
|
|
||
3 years ago
|
const App: React.FC = () => {
|
||
2 years ago
|
const [open, setOpen] = useState(false);
|
||
7 years ago
|
|
||
3 years ago
|
const handleMenuClick: MenuProps['onClick'] = e => {
|
||
9 years ago
|
if (e.key === '3') {
|
||
2 years ago
|
setOpen(false);
|
||
9 years ago
|
}
|
||
6 years ago
|
};
|
||
7 years ago
|
|
||
2 years ago
|
const handleOpenChange = (flag: boolean) => {
|
||
|
setOpen(flag);
|
||
6 years ago
|
};
|
||
7 years ago
|
|
||
3 years ago
|
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',
|
||
|
},
|
||
|
]}
|
||
|
/>
|
||
|
);
|
||
9 years ago
|
|
||
3 years ago
|
return (
|
||
2 years ago
|
<Dropdown overlay={menu} onOpenChange={handleOpenChange} open={open}>
|
||
3 years ago
|
<a onClick={e => e.preventDefault()}>
|
||
|
<Space>
|
||
|
Hover me
|
||
|
<DownOutlined />
|
||
|
</Space>
|
||
|
</a>
|
||
|
</Dropdown>
|
||
|
);
|
||
|
};
|
||
3 years ago
|
|
||
|
export default App;
|
||
6 years ago
|
```
|