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.
在 Visual Studio 中使用设计器时,顶部会出现一个白条。我无法在此栏中放置任何内容,因为靠近它的任何内容都在其下方。
这会导致在我无法放置内容的位置出现黑条,并且无法设计窗口,因为所有位置都从设计器变为运行时。
顶部的白条是为 Window Bar 留出空间。您可以通过更改围绕所有控件的网格的边距来更改应用程序顶部的黑色间隙:
<Grid Margin="0,-10,0,0"> </Grid>
其中 Margin="left,up,right,down" 所以 Margin="0,-10,0,0" 会将整个网格边距向上移动 10 个像素,因此您可以将所需的任何内容添加到顶部的额外空间中. 这也应该摆脱你的黑条问题。