Difference between Resize and SizeChanged events(Resize 和 SizeChanged 事件之间的区别)
问题描述
在 Winforms 中的 C# .Net 中,我在几乎所有组件中都发现了两个事件,Resize() 和 SizeChanged().它们之间有什么区别吗?如果两个事件相同,那为什么 C# 提供了两个不同的事件?
In C# .Net in Winforms, I found two events in almost all components, Resize() and SizeChanged(). Is there any difference between them? If both events are the same then why has C# provided two different events?
我正在用 C# 创建一个用户控件.此控件包含一个文本框.当用户更改控件的大小时,我想调整文本框的大小.我不知道应该使用哪个事件以及为什么?
I am creating a user control in C#. This control contains a text box. I want to resize the textbox when the user changes the control's size. I am confused about which event I should use and why?
推荐答案
Resize 事件发生在控件调整大小时,
SizeChanged
事件发生在>尺寸
属性变化.
The Resize
event occurs when the control is resized, while the SizeChanged
event occurs when the Size
property changes.
您可以使用任何一种,因为调整大小会导致 Size
属性发生变化.但是,您应该按照 Layout 事件.forms.control.resize.aspx" rel="noreferrer">调整大小 和 SizeChanged 事件.
You could use either, as a resize will cause the Size
property to change. However, you should rather use the Layout
event, as recommended both in the documentation for the Resize and SizeChanged events.
这篇关于Resize 和 SizeChanged 事件之间的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Resize 和 SizeChanged 事件之间的区别
基础教程推荐
- 如何激活MC67中的红灯 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 将 XML 转换为通用列表 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01