本文介绍了如何制作不可移动的表格?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试制作一个不可移动的表格。我怎样才能做到这一点???我已经把它变成了不可调整大小的,现在我只需要让它不可移动。
提前致谢!
I am trying to make a Form Non-Movable. How can I do this??? I have already made it non-resizable, now I just need to make it non-movable.
Thanks in advance!
推荐答案
- 将以下代码添加到表单构造函数中:
- Add the following code to the the form constructor:
public NonMovableForm() {
InitializeComponent();
//add this:
this.ShowInTaskbar = false;
this.ControlBox = false;
this.Text = null;
} //NonMovableForm
无论如何,问题解决了。如果你真的需要它,请自行决定。
这篇关于如何制作不可移动的表格?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!