Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: C# - 使无边界表单可移动? 鼠标拖动无边框窗体
好的,我已经制作了一个带有控件的表单。表格是无边界的。表单内的控件称为navigationPanel1。我希望能够单击并拖动控件以移动表单。我怎么做?
您必须订阅 mouse-down、mouse-up 和 mouse-move 事件。在鼠标移动中,您将表单的位置设置为新位置(您必须计算)。仅当鼠标按钮按下时才应执行鼠标移动中的代码(保存此状态)