mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
1.1 KiB
1.1 KiB
order | title | ||||
---|---|---|---|---|---|
8 |
|
zh-CN
默认是移入触发菜单,可以点击鼠标右键触发。
en-US
The default trigger mode is hover
, you can change it to contextMenu
.
import { Dropdown, Menu } from 'antd';
import React from 'react';
const menu = (
<Menu
items={[
{
label: '1st menu item',
key: '1',
},
{
label: '2nd menu item',
key: '2',
},
{
label: '3rd menu item',
key: '3',
},
]}
/>
);
const App: React.FC = () => (
<Dropdown overlay={menu} trigger={['contextMenu']}>
<div
className="site-dropdown-context-menu"
style={{
textAlign: 'center',
height: 200,
lineHeight: '200px',
}}
>
Right Click on here
</div>
</Dropdown>
);
export default App;
.site-dropdown-context-menu {
color: #777;
background: #f7f7f7;
}