2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 1
|
2016-07-26 09:17:46 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 不可用
|
|
|
|
en-US: Disabled
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-07-13 16:51:56 +08:00
|
|
|
|
2016-07-26 09:17:46 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-07-20 14:32:21 +08:00
|
|
|
Switch 失效状态。
|
2015-07-13 16:51:56 +08:00
|
|
|
|
2016-07-26 09:17:46 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
Disabled state of `Switch`.
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
|
|
|
import React, { useState } from 'react';
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Switch, Button } from 'antd';
|
2015-07-13 16:51:56 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => {
|
|
|
|
const [disabled, setDisabled] = useState(true);
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2020-11-08 15:27:13 +08:00
|
|
|
const toggle = () => {
|
|
|
|
setDisabled(!disabled);
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2020-11-08 15:27:13 +08:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Switch disabled={disabled} defaultChecked />
|
|
|
|
<br />
|
|
|
|
<Button type="primary" onClick={toggle}>
|
|
|
|
Toggle disabled
|
|
|
|
</Button>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
2015-07-13 16:51:56 +08:00
|
|
|
|
2022-04-15 16:20:56 +08:00
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|