2022-11-18 15:29:59 +08:00

37 lines
471 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Winform
date: 2022-11-18 14:48:31
author: 文永达
top_img: https://gcore.jsdelivr.net/gh/volantis-x/cdn-wallpaper/abstract/B951AE18-D431-417F-B3FE-A382403FF21B.jpeg
---
# Winform
## 1 .Net Framework
### 1.1 控件属性
#### 1.1.1 Name
表示控件名
```c#
this.button1.Name = "button1";
```
#### 1.1.2 Text
表示控件文本显示
```c#
this.button.Text = "button1";
```
### 1.2 控件事件
#### 1.2.1 button按钮
##### 1.2.1.1 click