ant-design/components/notification/demo/with-btn.md

51 lines
1015 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
title:
zh-CN: 自定义按钮
en-US: Custom close button
2016-03-31 09:40:55 +08:00
---
2015-07-28 15:40:28 +08:00
2016-08-17 11:07:02 +08:00
## zh-CN
2015-07-29 20:08:16 +08:00
自定义关闭按钮的样式和文字。
2015-07-28 15:40:28 +08:00
2016-08-17 11:07:02 +08:00
## en-US
To customize the style or font of the close button.
```tsx
import { Button, notification } from 'antd';
2022-05-23 14:37:16 +08:00
import React from 'react';
2015-07-28 15:40:28 +08:00
2016-12-14 17:57:15 +08:00
const close = () => {
2019-05-07 14:57:32 +08:00
console.log(
'Notification was closed. Either the close button was clicked or duration time elapsed.',
);
};
2015-08-06 20:55:30 +08:00
2016-12-14 17:57:15 +08:00
const openNotification = () => {
const key = `open${Date.now()}`;
const btn = (
<Button type="primary" size="small" onClick={() => notification.close(key)}>
Confirm
</Button>
);
2015-08-06 15:19:45 +08:00
notification.open({
message: 'Notification Title',
2019-05-07 14:57:32 +08:00
description:
'A function will be be called after the notification is closed (automatically after the "duration" time of manually).',
btn,
key,
2016-05-11 09:32:33 +08:00
onClose: close,
2015-08-06 15:19:45 +08:00
});
2015-07-30 21:04:52 +08:00
};
2015-07-28 15:40:28 +08:00
const App: React.FC = () => (
<Button type="primary" onClick={openNotification}>
Open the notification box
</Button>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```