How can I add moving effects to my controls in C#?
问题 I have a Panel In my C# form and I have a button. When I click on the Button the invisible Panel Shows. Instead of that I want the Panel to move in or slide in. For example when you click on a combobox the dropdown list doesnt just pop in. I want my Panel to appear like that. How can I do that ? 回答1: Window animation is a built-in feature for Windows. Here's a class that uses it: using System; using System.ComponentModel; using System.Windows.Forms; using System.Runtime.InteropServices;