gpt4 book ai didi

c# - 在 C# 中的 TableLayoutPanel 中的面板中居中面板

转载 作者:行者123 更新时间:2023-11-30 12:41:07 25 4
gpt4 key购买 nike

所以基本上我有一个游戏板,由 TableLayoutPanel 表示。 TableLayoutPanel 的每个单元格代表板上的一个空间并包含一个面板。每个 Panel 中都有一个 Label 来显示该空间中当前的内容(例如角色或建筑物),其 BackColor 表示该空间的地形类型(例如 Land、Water 等)。当玩家试图移动一个角色时,该角色可以移动的每个可能的空间都将“突出显示”。然后玩家将双击突出显示的空间之一以将角色移动到那里。

为了突出显示一个空格,我将一个面板添加到现有面板(其中已经有一个标签的面板)。

总结一下,TableLayoutPanel --> Panel --> Label, Panel。

我遇到的主要问题是我无法让“高亮面板”在其父面板中居中;它总是左上角居中。我希望能够看到父面板的部分 BackColor,以便玩家更容易决定去哪里。因此,将 Dock 设置为 Fill 不是一个选项。 highlight-Panel 比父 Panel 略小,因此可以看到父 Panel 的 BackColor 的边缘。 是的,Anchor 设置为 None。

第二个问题是我无法更改任何标签的文本颜色。我尝试在初始化时更改它,或者更直接地使用“tableLayoutPanel.GetControlFromPosition(16, 4).Controls[0].ForeColor = Color.White;”在特定位置更改它但似乎没有任何效果。

老实说,我对 super 复杂的黑客修复不感兴趣。但是,如果有一些简单的事情或我错过的事情,我将非常感谢您提供一些意见。谢谢。

这是创建 TableLayoutPanel、其中的面板以及每个面板中的标签的代码:

// Create TableLayoutPanel to hold Panels
tableLayoutPanel = new TableLayoutPanel()
{
RowCount = 1,
ColumnCount = 1,
AutoSize = true,
AutoSizeMode = AutoSizeMode.GrowAndShrink,
Location = new Point(12, 12),
Dock = DockStyle.Fill,
AutoScroll = true,
};

// Add tableLayoutPanel to the form
this.Controls.Add(tableLayoutPanel);

// Reset and add rows/columns + styles
tableLayoutPanel.RowStyles.Clear();
tableLayoutPanel.ColumnStyles.Clear();

for (int i = 0; i < rows; i++)
{
tableLayoutPanel.RowCount++;
tableLayoutPanel.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));
}
tableLayoutPanel.RowCount--;

for (int j = 0; j < cols; j++)
{
tableLayoutPanel.ColumnCount++;
tableLayoutPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
}
tableLayoutPanel.ColumnCount--;

// Add Panels to TableLayoutPanel
for (int i = 0; i < rows; i++)
{
for (int j = 0; j < cols; j++)
{
// Create new Panel
Panel space = new Panel()
{
BackColor = SystemColors.ActiveCaption,
BorderStyle = BorderStyle.FixedSingle,
Margin = new Padding(0),
Size = new Size(45, 45)
};

space.MouseClick += new MouseEventHandler(clickOnSpace);

// Create new Label
Label info = new Label()
{
Size = new Size(93, 93),
Text = "Info",
Dock = DockStyle.Fill,
TextAlign = ContentAlignment.MiddleCenter,
Enabled = false,
Font = new Font("Microsoft Sans Serif", 6),
ForeColor = Color.White
};

// Add Label to Panel
space.Controls.Add(info);

// Add Panel to TableLayoutPanel
tableLayoutPanel.Controls.Add(space, j, i);
}
}

以及创建高亮面板的代码:

// Highlight potential positions using possibleMoves
private void Highlight(List<Tuple<int, int>> possibleMoves, int remaining)
{
int r = 0;
int c = 0;

foreach (Tuple<int, int> pair in possibleMoves)
{
r = pair.Item1;
c = pair.Item2;

// If highlight-Panel doesn't already exist
if (tableLayoutPanel.GetControlFromPosition(c, r).Controls.Count == 1)
{
// Create a Panel to highlight the space
Panel highlight = new Panel()
{
Name = "highlight",
Size = new Size(30, 30),
BackColor = Color.Yellow,
Anchor = AnchorStyles.None
};

highlight.MouseDoubleClick += new MouseEventHandler(doubleClickOnSpace);

// Add highlight Panel to space Panel
tableLayoutPanel.GetControlFromPosition(c, r).Controls.Add(highlight);
// Bring highlight Panel to front
tableLayoutPanel.GetControlFromPosition(c, r).Controls[1].BringToFront();
}
}
}

最佳答案

... Thus, setting Dock to Fill is not an option.

事实上,我认为将 Dock 设置为 Fill 确实是一个不错的选择!

看看这张图片。这是一个具有 2 列和 2 行的 TableLayoutPanel。每个单元格都包含一个 Pannel,其中包含一个 Panel,其中包含一个 Label。尽管您期望所有控件的 Dock 属性已设置为 Fill!

Center a Panel in a Panel in TableLayoutPanel

我告诉您第一个单元格的设置,您可以在其中看到 RedBlackWhite 颜色。

单元格包含:

  • 红色区域,一个 Panel 有:

    BackColor 属性设置为 Red
    Margin 属性全部设置为 0
    Padding 属性全部设置为 5
    Dock 属性设置为 Fill

  • 黑色区域,一个面板有:

    BackColor 属性设置为 Black
    Margin 属性全部设置为 0
    Padding 属性全部设置为 5
    Dock 属性设置为 Fill

  • 白色标签,一个 Label 具有:

    BackColor 属性设置为 White
    Margin 属性全部设置为 0
    Padding 属性全部设置为0
    Dock 属性设置为 Fill

其他cell的结构完全一样,只是LabelBackColor和它的parent(比如黑色的),改为Transparent,所以您会看到最里面的 PanelBackColor(如红色面板)。

注意

答案完全基于将 Dock 属性设置为 Fill 并为停靠控件设置合适的 Padding 值。但是还有另一种优雅的解决方案可以自动将控件保持在容器的中心,它基于使用具有 1 行和 1 列的 TableLayoutPanel 而不是面板,然后设置 Anchor 子属性为 None。这样, child 将在 TableLayoutPanel 中水平和垂直居中。你会发现这篇关于它的帖子很有用:

关于c# - 在 C# 中的 TableLayoutPanel 中的面板中居中面板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38977383/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com